-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
REGR: fix calling numpy bitwise ufunc with Index objects #48149
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
REGR: fix calling numpy bitwise ufunc with Index objects #48149
Conversation
@@ -16,6 +16,7 @@ Fixed regressions | |||
~~~~~~~~~~~~~~~~~ | |||
- Fixed regression in taking NULL :class:`objects` from a :class:`DataFrame` causing a segmentation violation. These NULL values are created by :meth:`numpy.empty_like` (:issue:`46848`) | |||
- Fixed regression in :func:`concat` materializing :class:`Index` during sorting even if :class:`Index` was already sorted (:issue:`47501`) | |||
- Fixed regression in calling bitwise numpy ufuncs (for example, ``np.bitwise_and``) on Index objects (:issue:`46769`) |
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.
- Fixed regression in calling bitwise numpy ufuncs (for example, ``np.bitwise_and``) on Index objects (:issue:`46769`) | |
- Fixed regression in calling bitwise numpy ufuncs (for example, ``np.bitwise_and``) on :class:`Index` objects (:issue:`46769`) |
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.
Thanks @jorisvandenbossche lgtm.
(whether the release note should be updated as suggested is subjective. My reasoning was to match the previous note)
…ith Index objects
…func with Index objects) (#48200) Backport PR #48149: REGR: fix calling numpy bitwise ufunc with Index objects Co-authored-by: Joris Van den Bossche <[email protected]>
Yeah, in the meantime also some other entries have been added that didn't match that (although maybe mainly by me ;)) |
bitwise
ufuncs #46769doc/source/whatsnew/vX.X.X.rst
file if fixing a bug or adding a new feature.