diff options
author | Guido van Rossum <guido@python.org> | 1997-03-04 18:31:47 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-03-04 18:31:47 (GMT) |
commit | f39fc43f31d19d74edbce0afe723c8d6fd91ec02 (patch) | |
tree | 82413e3c4eaf49e3e98f4583fc6b5491c712185a /Include | |
parent | 7614da6b8743f1076dc68f130684b79bf4a78c0c (diff) | |
download | cpython-f39fc43f31d19d74edbce0afe723c8d6fd91ec02.zip cpython-f39fc43f31d19d74edbce0afe723c8d6fd91ec02.tar.gz cpython-f39fc43f31d19d74edbce0afe723c8d6fd91ec02.tar.bz2 |
A few comment alignment and clarifications.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/abstract.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Include/abstract.h b/Include/abstract.h index 6fa0fd7..975c562 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)); /* |