mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59: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
|
@ -102,7 +102,7 @@ class test__RandomNameSequence(TC):
|
|||
|
||||
def test_get_six_char_str(self):
|
||||
# _RandomNameSequence returns a six-character string
|
||||
s = self.r.next()
|
||||
s = next(self.r)
|
||||
self.nameCheck(s, '', '', '')
|
||||
|
||||
def test_many(self):
|
||||
|
@ -111,7 +111,7 @@ class test__RandomNameSequence(TC):
|
|||
dict = {}
|
||||
r = self.r
|
||||
for i in xrange(TEST_FILES):
|
||||
s = r.next()
|
||||
s = next(r)
|
||||
self.nameCheck(s, '', '', '')
|
||||
self.failIf(s in dict)
|
||||
dict[s] = 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue