diff options
| author | Georg Brandl <georg@python.org> | 2007-04-21 15:47:16 +0000 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2007-04-21 15:47:16 +0000 |
| commit | a18af4e7a2091d11478754eb66ae387a85535763 (patch) | |
| tree | fea8015d656cfee937bb6f3d106e6ca0e9f19d78 /Objects/exceptions.c | |
| parent | 4d2adcca52ced412d4bdf131b872729c43520d58 (diff) | |
| download | cpython-git-a18af4e7a2091d11478754eb66ae387a85535763.tar.gz | |
PEP 3114: rename .next() to .__next__() and add next() builtin.
Diffstat (limited to 'Objects/exceptions.c')
| -rw-r--r-- | Objects/exceptions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/exceptions.c b/Objects/exceptions.c index be3302ba7c..6832fd96ab 100644 --- a/Objects/exceptions.c +++ b/Objects/exceptions.c @@ -369,7 +369,7 @@ SimpleExtendsException(PyExc_StandardError, TypeError, * StopIteration extends Exception */ SimpleExtendsException(PyExc_Exception, StopIteration, - "Signal the end from iterator.next()."); + "Signal the end from iterator.__next__()."); /* |
