Kaydet (Commit) 2adf06b0 authored tarafından Guido van Rossum's avatar Guido van Rossum

Added missing for PySequence_List.

üst 36a484fb
...@@ -725,6 +725,11 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/ ...@@ -725,6 +725,11 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
This is equivalent to the Python expression: tuple(o) 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)); int PySequence_Count Py_PROTO((PyObject *o, PyObject *value));
/* /*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment