-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
CLN: split off frozen (immutable) data structures into pandas/indexes/frozen.py #15477
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
Conversation
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.
Looks good (apart from the pickle failures)
pandas/compat/pickle_compat.py
Outdated
# our Unpickler sub-class to override methods and some dispatcher | ||
# functions for compat | ||
base_class = pkl._Unpickler if compat.PY3 else pkl.Unpickler | ||
class Unpickler(base_class): |
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.
, object
for py2
Codecov Report
@@ Coverage Diff @@
## master #15477 +/- ##
==========================================
+ Coverage 90.36% 90.36% +<.01%
==========================================
Files 135 136 +1
Lines 49519 49532 +13
==========================================
+ Hits 44747 44759 +12
- Misses 4772 4773 +1
Continue to review full report at Codecov.
|
…/frozen.py should make it a bit easier to work with these; and no reason to be in pandas/core/base.py Author: Jeff Reback <[email protected]> Closes pandas-dev#15477 from jreback/frozen and squashes the following commits: 2a64a4f [Jeff Reback] CLN: split off frozen (immutable) data structures into pandas/indexes/frozen.py
should make it a bit easier to work with these; and no reason to be in pandas/core/base.py