-
-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
DEPR: remove real, imag, put, and str.partition kwarg #29986
Conversation
These changes I thought would have been fine. Seem to have instead triggered multiple test failures... |
Looks like ptp behavior is fickle depending on numpy version, will revert that and save it for a later day |
result = values.str.partition(pat="_") | ||
tm.assert_frame_equal(result, expected) | ||
result = values.str.partition("_") | ||
tm.assert_frame_equal(result, expected) | ||
|
||
# str.rpartition | ||
# using sep -> no warning |
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.
Small nit, but those comments are no longer up to date (also above)
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.
updated #29985 to remove these comments
thanks @jbrockmendel small followup indicated by @jorisvandenbossche above |
No description provided.