Closed emmiegit closed 8 years ago
Python 3's generators do not use next() but instead use __next__(). Add handling for both versions of Python.
next()
__next__()
Python 3's generators do not use
next()
but instead use__next__()
. Add handling for both versions of Python.