-
-
Notifications
You must be signed in to change notification settings - Fork 18.3k
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
CLN: removed the 'diff' method for Index #13669
Conversation
f82407f
to
6f42786
Compare
Current coverage is 84.52%@@ master #13669 diff @@
==========================================
Files 141 141
Lines 51145 51144 -1
Methods 0 0
Messages 0 0
Branches 0 0
==========================================
- Hits 43233 43232 -1
Misses 7912 7912
Partials 0 0
|
@@ -1949,8 +1949,6 @@ def difference(self, other): | |||
theDiff = sorted(set(self) - set(other)) | |||
return Index(theDiff, name=result_name) | |||
|
|||
diff = deprecate('diff', difference) | |||
|
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.
hmm no tests on the deprecation to remove? docs (they r prob gone, but give a check)
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 did. Otherwise, something would have failed.
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.
can you add in the removal of deprecations for +
and -
to same PR?
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.
6f42786
to
7dca659
Compare
ty! |
Deprecated all the way back in
0.15.0
here.