From: Guido van Rossum Date: Tue, 1 May 2001 17:01:25 +0000 (+0000) Subject: Discard a misleading comment about iter_iternext(). X-Git-Tag: v2.2a3~1941 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=47668928e6f02713a1fbd27b434b08b08ca75d1b;p=thirdparty%2FPython%2Fcpython.git Discard a misleading comment about iter_iternext(). --- diff --git a/Objects/iterobject.c b/Objects/iterobject.c index 8601980e87c9..6a11772377e6 100644 --- a/Objects/iterobject.c +++ b/Objects/iterobject.c @@ -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) {