mirror of
https://github.com/davidhalter/jedi.git
synced 2026-01-03 10:43:26 +08:00
8 lines
151 B
Python
8 lines
151 B
Python
|
|
def next(iterator, default=1):
|
|
if hasattr("next"):
|
|
return iterator.next()
|
|
else:
|
|
return iterator.__next__()
|
|
return default
|