-
Notifications
You must be signed in to change notification settings - Fork 915
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
[REVIEW] Add information about Index.is_*
method deprecation
#12909
[REVIEW] Add information about Index.is_*
method deprecation
#12909
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.
Still need to clean out the implementations in index.py, right?
The implementations were converted as internal APIs to be used as fast paths for |
Ah OK I see. Now that these APIs are not public I think it would be better to remove those helper functions and implement the |
Got it, it makes sense to have this kind of a refactor done in this PR itself. I'll make those changes here. 👍 |
FWIW these were only deprecated in pandas 2.0 not removed. These will be removed in pandas 3.0 |
Ah, my bad. So let's probably keep them deprecated and not drop them now. Will add comments to this PR about the delayed removal of these APIs. |
99fe3d1
to
500ca15
Compare
Index.is_*
methodsIndex.is_*
method deprecation
This should be now ready for review. |
Description
This PR adds additional information for the following Index APIs to match with pandas 2.0:
Checklist