]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Discard a misleading comment about iter_iternext().
authorGuido van Rossum <guido@python.org>
Tue, 1 May 2001 17:01:25 +0000 (17:01 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 1 May 2001 17:01:25 +0000 (17:01 +0000)
Objects/iterobject.c

index 8601980e87c940b6b57a7eb178524f4cd3812ae0..6a11772377e63ffc702c518d51f2c61db5a37dae 100644 (file)
@@ -45,7 +45,6 @@ iter_getiter(PyObject *it)
        return it;
 }
 
-/* Return (value, 0) if OK; (NULL, 0) at end; (NULL, -1) if exception */
 static PyObject *
 iter_iternext(PyObject *iterator)
 {