From f39fc43f31d19d74edbce0afe723c8d6fd91ec02 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 4 Mar 1997 18:31:47 +0000 Subject: [PATCH] A few comment alignment and clarifications. --- Include/abstract.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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)); /* -- 2.50.1