mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +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
|
@ -77,7 +77,7 @@ class CommonTest(seq_tests.CommonTest):
|
|||
a = self.type2test(range(20))
|
||||
r = reversed(a)
|
||||
self.assertEqual(list(r), self.type2test(range(19, -1, -1)))
|
||||
self.assertRaises(StopIteration, r.next)
|
||||
self.assertRaises(StopIteration, next, r)
|
||||
self.assertEqual(list(reversed(self.type2test())),
|
||||
self.type2test())
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue