Added missing for PySequence_List.

This commit is contained in:
Guido van Rossum 1996-12-05 21:48:50 +00:00
parent 36a484fb52
commit 2adf06b04c
1 changed files with 5 additions and 0 deletions

View 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));
/*