]> granicus.if.org Git - python/commitdiff
A few comment alignment and clarifications.
authorGuido van Rossum <guido@python.org>
Tue, 4 Mar 1997 18:31:47 +0000 (18:31 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 4 Mar 1997 18:31:47 +0000 (18:31 +0000)
Include/abstract.h

index 6fa0fd7ca6ffd239f453e5478abfdefe8183395d..975c562280aa4f15415171c09065578f0c70bcf9 100644 (file)
@@ -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));
 
        /*