Commit 6cc6b2fc authored by Stefan Behnel's avatar Stefan Behnel

Py<=2.5 test fix

parent a9f38fad
try:
from builtins import next # Py3k
except ImportError:
def next(it):
return it.next()
def very_simple():
"""
>>> x = very_simple()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment