mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +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
|
|
@ -893,7 +893,7 @@ class iterparse:
|
|||
append((event, None))
|
||||
parser.EndNamespaceDeclHandler = handler
|
||||
|
||||
def next(self):
|
||||
def __next__(self):
|
||||
while 1:
|
||||
try:
|
||||
item = self._events[self._index]
|
||||
|
|
@ -923,7 +923,7 @@ class iterparse:
|
|||
return self
|
||||
except NameError:
|
||||
def __getitem__(self, index):
|
||||
return self.next()
|
||||
return self.__next__()
|
||||
|
||||
##
|
||||
# Parses an XML document from a string constant. This function can
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue