no-issue: typo fix in c-api/tuple.rst (gh-98560)

This commit is contained in:
wim glenn 2022-10-23 05:46:56 -05:00 committed by GitHub
parent 1db2a0cb20
commit 833f275840
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ Tuple Objects
Return the slice of the tuple pointed to by *p* between *low* and *high*,
or ``NULL`` on failure. This is the equivalent of the Python expression
``p[low:high]``. Indexing from the end of the list is not supported.
``p[low:high]``. Indexing from the end of the tuple is not supported.
.. c:function:: int PyTuple_SetItem(PyObject *p, Py_ssize_t pos, PyObject *o)