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
Looks like the current implementation would only work in Python 3.
The unicode in u'c' is causing the issue in your case since unicode and str are two different things in Python 2. There is basestring from which both of these inherit, but using that would only work in Python 2 again.
Hey, I get recursion errors on Python 2.7 while executing the following code:
I think the issue is here (https://github.com/kachayev/fn.py/blob/master/fn/iters.py#L224), but as I couldn't take a deeper look at it yet, I'm just creating the issue to let you guys know.
The text was updated successfully, but these errors were encountered: