From: Guido van Rossum Date: Thu, 5 Dec 1996 21:48:50 +0000 (+0000) Subject: Added missing for PySequence_List. X-Git-Tag: v1.5a1~895 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2adf06b04c23e3eda8535e2ec3f32ad76de27c5e;p=thirdparty%2FPython%2Fcpython.git Added missing for PySequence_List. --- diff --git a/Include/abstract.h b/Include/abstract.h index de984e7e93f2..6f7116a3accd 100644 --- a/Include/abstract.h +++ b/Include/abstract.h @@ -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)); /*