diff options
Diffstat (limited to 'Include/abstract.h')
-rw-r--r-- | Include/abstract.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Include/abstract.h b/Include/abstract.h index 1dae5f1..ac9e568 100644 --- a/Include/abstract.h +++ b/Include/abstract.h @@ -484,9 +484,8 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/ DL_IMPORT(PyObject *) PyIter_Next(PyObject *); /* Takes an iterator object and calls its tp_iternext slot, returning the next value. If the iterator is exhausted, - this can return NULL without setting an exception, *or* - NULL with a StopIteration exception. - NULL with any other exception means an error occurred. */ + this returns NULL without setting an exception. + NULL with an exception means an error occurred. */ /* Number Protocol:*/ |