-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
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: Follow-ups to #24024 #24573
CLN: Follow-ups to #24024 #24573
Conversation
@@ -3082,7 +3082,7 @@ def _box_item_values(self, key, values): | |||
def _maybe_cache_changed(self, item, value): | |||
"""The object has called back to us saying maybe it has changed. | |||
""" | |||
self._data.set(item, value, check=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.
check is never True, removed the corresponding code in internals.managers and internals.blocks
method.__name__ = name | ||
# TODO: docstrings | ||
method.__name__ = array_method.__name__ | ||
method.__doc__ = array_method.__doc__ |
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.
this should address @jorisvandenbossche's point that docstrings are lost in the existing implementation
Codecov Report
@@ Coverage Diff @@
## master #24573 +/- ##
===========================================
- Coverage 92.31% 43.06% -49.26%
===========================================
Files 166 166
Lines 52556 52526 -30
===========================================
- Hits 48518 22619 -25899
- Misses 4038 29907 +25869
Continue to review full report at Codecov.
|
Codecov Report
@@ Coverage Diff @@
## master #24573 +/- ##
==========================================
+ Coverage 92.31% 92.32% +0.01%
==========================================
Files 166 166
Lines 52556 52524 -32
==========================================
- Hits 48518 48494 -24
+ Misses 4038 4030 -8
Continue to review full report at Codecov.
|
lgtm. |
great. after this will be a missing-test pass |
grepped for TODO in the affected files and took care of the easy ones.
Addresses a flake8 complaint in MultiIndex (no idea why it is only showing up locally)