mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +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
|
@ -179,7 +179,7 @@ try:
|
|||
t2 = writeTmp(2, ["C\nD"])
|
||||
fi = FileInput(files=(t1, t2))
|
||||
verify(fi.fileno() == -1)
|
||||
line = fi.next()
|
||||
line = next(fi)
|
||||
verify(fi.fileno() != -1)
|
||||
fi.nextfile()
|
||||
verify(fi.fileno() == -1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue