diff options
| author | Guido van Rossum <guido@python.org> | 1997-03-04 18:31:47 +0000 |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 1997-03-04 18:31:47 +0000 |
| commit | f39fc43f31d19d74edbce0afe723c8d6fd91ec02 (patch) | |
| tree | 82413e3c4eaf49e3e98f4583fc6b5491c712185a | |
| parent | 7614da6b8743f1076dc68f130684b79bf4a78c0c (diff) | |
| download | cpython-git-f39fc43f31d19d74edbce0afe723c8d6fd91ec02.tar.gz | |
A few comment alignment and clarifications.
| -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 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)); /* |
