-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
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
bpo-42451: Indicate that PyTuple_GetItem does not support negative indices #23529
Conversation
@@ -56,8 +56,10 @@ Tuple Objects | |||
|
|||
.. c:function:: PyObject* PyTuple_GetItem(PyObject *p, Py_ssize_t pos) | |||
|
|||
Return the object at position *pos* in the tuple pointed to by *p*. If *pos* is | |||
out of bounds, return ``NULL`` and set an :exc:`IndexError` exception. |
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.
You can say:
If pos is negative or out of bound, ...
To document that IndexError is raised if pos is negative.
@@ -0,0 +1,2 @@ | |||
update PyTuple_GetItem docs to indicate that it does not support negative |
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.
I don't think that it's worth it, you can remove it ;-) I add the skip news label.
After I removed the trailing space on line 59, I noticed that it was not added by the PR but existed before. So a) the previous change to this doc must have been before we checked .rst files and b) there might be other trailing whitespace lines. If there are, and the whitespace tests fail again, please run |
Victor, do you otherwise consider this ready to merge? Want me to do it? |
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.
LGTM.
Merged, thanks! |
https://bugs.python.org/issue42451