From: Benjamin Peterson Date: Tue, 8 Apr 2014 14:48:36 +0000 (-0400) Subject: PySequence_Fast generally returns a list not a tuple (closes #16395) X-Git-Tag: v2.7.7rc1~81 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=96c9a358157da0b5dcdce4523164f84bf593cad6;p=python PySequence_Fast generally returns a list not a tuple (closes #16395) --- diff --git a/Doc/c-api/sequence.rst b/Doc/c-api/sequence.rst index 2b668a5d3d..653f9ad036 100644 --- a/Doc/c-api/sequence.rst +++ b/Doc/c-api/sequence.rst @@ -167,10 +167,10 @@ Sequence Protocol .. c:function:: PyObject* PySequence_Fast(PyObject *o, const char *m) - Returns the sequence *o* as a tuple, unless it is already a tuple or list, in - which case *o* is returned. Use :c:func:`PySequence_Fast_GET_ITEM` to access the - members of the result. Returns *NULL* on failure. If the object is not a - sequence, raises :exc:`TypeError` with *m* as the message text. + Return the sequence *o* as a list, unless it is already a tuple or list, in + which case *o* is returned. Use :c:func:`PySequence_Fast_GET_ITEM` to access + the members of the result. Returns *NULL* on failure. If the object is not + a sequence, raises :exc:`TypeError` with *m* as the message text. .. c:function:: PyObject* PySequence_Fast_GET_ITEM(PyObject *o, Py_ssize_t i)