]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Added missing for PySequence_List.
authorGuido van Rossum <guido@python.org>
Thu, 5 Dec 1996 21:48:50 +0000 (21:48 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 5 Dec 1996 21:48:50 +0000 (21:48 +0000)
Include/abstract.h

index de984e7e93f2accaa006e124a34062c643ca2867..6f7116a3accd7a23435e567a330666c008295254 100644 (file)
@@ -725,6 +725,11 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
         This is equivalent to the Python expression: tuple(o)
        */
 
+     PyObject *PySequence_List Py_PROTO((PyObject *o));
+       /*
+       Returns the o as a list on success, and NULL on failure.
+       This is equivalent to the Python expression: list(o)
+       */
      int PySequence_Count Py_PROTO((PyObject *o, PyObject *value));
 
        /*