Skip to content
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

Fix indexing with integers #146

Merged
merged 4 commits into from
Apr 3, 2025
Merged

Fix indexing with integers #146

merged 4 commits into from
Apr 3, 2025

Conversation

lucyleeow
Copy link
Contributor

closes #144

Fixes bug with indexing with integers introduced in #139

Copy link
Member

@ev-br ev-br left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agreed that np.bool should not be there (in the Array API land, bools are distinct).

THere's a small suggestion below. Additionally, since the OP quoted a passage about __index__, can we also add

class I:
    def __init__(self, x):
         self.x = x
    def __index__(self):
        return self.x

assert a[I(0)] == a[0]

@lucyleeow
Copy link
Contributor Author

@ev-br thanks! Done!

@ev-br ev-br merged commit 25cc3d7 into data-apis:main Apr 3, 2025
19 checks passed
@ev-br
Copy link
Member

ev-br commented Apr 3, 2025

LGTM and merged. Thanks @lucyleeow

@ev-br ev-br added this to the 2.4 milestone Apr 3, 2025
@lucyleeow lucyleeow deleted the fix_int_index branch April 3, 2025 10:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Regression: indexing by np.int64 indices
2 participants