We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
A number of \_\_getitem\_\_ implementations handle negative or out-of-bounds indices improperly, for example:
\_\_getitem\_\_
>>> a = pa.array([11,12,13]) >>> a[-6] 11 >>> a[-15] 11 >>> a[4] NA >>> a[3] NA >>> a[1111] NA
Reporter: Antoine Pitrou / @pitrou Assignee: Antoine Pitrou / @pitrou
Note: This issue was originally created as ARROW-2331. Please see the migration documentation for further details.
The text was updated successfully, but these errors were encountered:
Uwe Korn / @xhochy: Issue resolved by pull request 1770 #1770
Sorry, something went wrong.
pitrou
No branches or pull requests
A number of
\_\_getitem\_\_
implementations handle negative or out-of-bounds indices improperly, for example:Reporter: Antoine Pitrou / @pitrou
Assignee: Antoine Pitrou / @pitrou
PRs and other links:
Note: This issue was originally created as ARROW-2331. Please see the migration documentation for further details.
The text was updated successfully, but these errors were encountered: