forked from VimPlug/jedi
8 lines
154 B
Python
8 lines
154 B
Python
|
|
def next(iterator, default=None):
|
|
if hasattr("next"):
|
|
return iterator.next()
|
|
else:
|
|
return iterator.__next__()
|
|
return default
|