Commit f39fc43f authored by Guido van Rossum's avatar Guido van Rossum

A few comment alignment and clarifications.

parent 7614da6b
......@@ -721,15 +721,17 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
PyObject *PySequence_Tuple Py_PROTO((PyObject *o));
/*
Returns the o as a tuple on success, and NULL on failure.
Returns the sequence, o, as a tuple on success, and NULL on failure.
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)
Returns the sequence, 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));
/*
......
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