diff options
author | wim glenn <wim.glenn@gmail.com> | 2022-10-23 10:46:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-23 10:46:56 (GMT) |
commit | 833f275840811a3f38c367df24bbc44caf00b26f (patch) | |
tree | 322d962f2679bb7c6ff85404715579d4a8100402 /Doc/c-api | |
parent | 1db2a0cb20a1de5231a73fc7381056d725e90535 (diff) | |
download | cpython-833f275840811a3f38c367df24bbc44caf00b26f.zip cpython-833f275840811a3f38c367df24bbc44caf00b26f.tar.gz cpython-833f275840811a3f38c367df24bbc44caf00b26f.tar.bz2 |
no-issue: typo fix in c-api/tuple.rst (gh-98560)
Diffstat (limited to 'Doc/c-api')
-rw-r--r-- | Doc/c-api/tuple.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/tuple.rst b/Doc/c-api/tuple.rst index 0bfd4b3..5acddf7 100644 --- a/Doc/c-api/tuple.rst +++ b/Doc/c-api/tuple.rst @@ -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) |