From 0dcceda72258edf953730853ff8a37053e543d37 Mon Sep 17 00:00:00 2001 From: wim glenn Date: Sat, 22 Oct 2022 19:30:37 -0500 Subject: [PATCH] typo fix in c-api/tuple.rst copy-and-paste error from https://github.com/python/cpython/pull/16925 --- Doc/c-api/tuple.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/c-api/tuple.rst b/Doc/c-api/tuple.rst index 0bfd4b308d9372..5acddf7849aa33 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)