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
{{ message }}
This repository has been archived by the owner on May 25, 2020. It is now read-only.
Hey @vinzenz, we're trying to add unicode support to Pyston and it looks like pypa doesn't support unicode literals -- ex it will treat u"\u0180" as the length-6 string "\\u0180". Is this something that could get added?
Right now we're using UTF8 to store the unicode data as part of the AST, but I don't mind switching that to something else (I think our unicode implementation uses UTF-32 anyway).
The text was updated successfully, but these errors were encountered:
Hey @vinzenz, we're trying to add unicode support to Pyston and it looks like pypa doesn't support unicode literals -- ex it will treat
u"\u0180"
as the length-6 string"\\u0180"
. Is this something that could get added?Right now we're using UTF8 to store the unicode data as part of the AST, but I don't mind switching that to something else (I think our unicode implementation uses UTF-32 anyway).
The text was updated successfully, but these errors were encountered: