Files
jedi/_compatibility.py
2012-04-22 14:30:55 +02:00

8 lines
111 B
Python

# python2.5 compatibility
try:
next = next
except NameError:
def next(obj):
return obj.next()