mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-07 22:44:27 +08:00
8 lines
111 B
Python
8 lines
111 B
Python
|
|
# python2.5 compatibility
|
|
try:
|
|
next = next
|
|
except NameError:
|
|
def next(obj):
|
|
return obj.next()
|