mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
A few comment alignment and clarifications.
This commit is contained in:
parent
7614da6b87
commit
f39fc43f31
1 changed files with 5 additions and 3 deletions
|
@ -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));
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue