From: Guido van Rossum Date: Tue, 4 Mar 1997 18:31:47 +0000 (+0000) Subject: A few comment alignment and clarifications. X-Git-Tag: v1.5a1~309 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f39fc43f31d19d74edbce0afe723c8d6fd91ec02;p=python A few comment alignment and clarifications. --- diff --git a/Include/abstract.h b/Include/abstract.h index 6fa0fd7ca6..975c562280 100644 --- a/Include/abstract.h +++ b/Include/abstract.h @@ -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)); /*