mirror of
https://github.com/python/cpython.git
synced 2025-10-10 00:43:41 +00:00
PEP 3114: rename .next() to .__next__() and add next() builtin.
This commit is contained in:
parent
4d2adcca52
commit
a18af4e7a2
83 changed files with 495 additions and 425 deletions
|
@ -240,7 +240,7 @@ class FileInput:
|
|||
def __iter__(self):
|
||||
return self
|
||||
|
||||
def next(self):
|
||||
def __next__(self):
|
||||
try:
|
||||
line = self._buffer[self._bufindex]
|
||||
except IndexError:
|
||||
|
@ -259,7 +259,7 @@ class FileInput:
|
|||
if i != self._lineno:
|
||||
raise RuntimeError, "accessing lines out of order"
|
||||
try:
|
||||
return self.next()
|
||||
return self.__next__()
|
||||
except StopIteration:
|
||||
raise IndexError, "end of input reached"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue