You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On python2 if 'future' was globally installed or accessible by dissononce, transitions lib will successfully do a from builtins import object eventhough it seems intended for py3 only. This imported object in py2 already has a next() method, causing a conflict with 'next' that is defined as a state action/transition and raises a TypeError: newobject is not an iterator
The text was updated successfully, but these errors were encountered:
refs #1 GuardedhandshakeState might throw an error on py2 if
future is installed
On python2 if 'future' was globally installed, transitions lib
will successfully do a "from builtins import object" eventhough
it seems intended for py3 only. This imported object in py2
already has a 'next()' method, causing a conflict with 'next'
that is defined as a state action/transition and raises a
'TypeError: newobject is not an iterator'
On python2 if 'future' was globally installed or accessible by dissononce, transitions lib will successfully do a
from builtins import object
eventhough it seems intended for py3 only. This imported object in py2 already has anext()
method, causing a conflict with 'next' that is defined as a state action/transition and raises aTypeError: newobject is not an iterator
The text was updated successfully, but these errors were encountered: