PEP 3114: rename .next() to .__next__() and add next() builtin.

This commit is contained in:
Georg Brandl 2007-04-21 15:47:16 +00:00
parent 4d2adcca52
commit a18af4e7a2
83 changed files with 495 additions and 425 deletions

View file

@ -174,7 +174,7 @@ class BsdDbShelf(Shelf):
return (key, Unpickler(f).load())
def next(self):
(key, value) = self.dict.next()
(key, value) = next(self.dict)
f = StringIO(value)
return (key, Unpickler(f).load())