-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Handle non-Job objects in Job equality check. #455
Conversation
Codecov Report
@@ Coverage Diff @@
## master #455 +/- ##
=======================================
Coverage 77.13% 77.14%
=======================================
Files 42 42
Lines 5738 5740 +2
Branches 1119 1120 +1
=======================================
+ Hits 4426 4428 +2
Misses 1027 1027
Partials 285 285
Continue to review full report at Codecov.
|
non_job = NonJob(job) | ||
assert job != non_job | ||
assert non_job != job |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why does this ensure that we have NotImplemeted
as opposed to False
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm testing both a != b
and b != a
because of the order in which Python resolves __eq__
operators. This section of the Python docs explains why both tests are relevant here, and why we return NotImplemented
here: object.__eq__
docs.
Specifically, the order of resolution is controlled by this rule: "If the operands are of different types, and right operand’s type is a direct or indirect subclass of the left operand’s type, the reflected method of the right operand has priority, otherwise the left operand’s method has priority."
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, I used this issue as a reference implementation because it appeared to correct the equality behavior that I was unsure about for subclasses (JobSubclass
) and objects of different types with similar APIs (NonJob
): googleapis/google-cloud-python#3455
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good find, and nice fix!
Description
I caught a couple minor errors in signac-flow tests (to be addressed separately) that were exposed by the changes in #442. This unrelated problem in signac-flow indicated an issue in the new
__eq__
check, which doesn't correctly handle comparisons to non-Job objects. This PR fixes that bug so theJob
class correctly adheres to the Python data model.Specifically, the old
__eq__
behavior did nothing to ensure that the objects being tested for equality were Job objects. If a job object and a tuple were compared, the previousJob
equality test just checked ifhash(job) == hash(tuple_of_data)
, which hid the test failures in signac-flow until #442 was merged and errors were raised by the comparison. However, the comparison should not raise errors or returnFalse
, and should instead returnNotImplemented
according to the Python data model and some StackOverflow posts I found.Motivation and Context
Fixes minor bug in
__eq__
implementation.This issue from another library and this section of the Python documentation are helpful for explaining the motivation of the change.
I added tests that cover a range of cases.
Types of Changes
1The change breaks (or has the potential to break) existing functionality.
Checklist:
If necessary: