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
Is py3k branch on your bitbucket alive? I guess that's the best place to put it in as there are places where unicode changes from python 2 to 3 make the code useless (like checking if value is unicode or str, etc).
Migrated issue, originally created by Anonymous
setup.py distributed with mako runs 2to3 by default on systems with python3.
2to3 automatically changes unicode() to str() making some of the places where unicode() appears incorrect.
i.e. filters.py line 59:
unicode(str(x), encoding=key)
is getting changed to:
str(str(x), encoding=key)
The text was updated successfully, but these errors were encountered: