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 Jul 5, 2023. It is now read-only.
For python/typing#208 I'd like to distinguish between bytes, str and unicode, but the Python 2 tokenizer erases the difference between b'x' and 'x' in an early stage.
The text was updated successfully, but these errors were encountered:
Fixes#10
This is a naive fix. It only checks the first string in concatenation at CST level, for ``b`` or ``B`` prefix and sets the ``has_b`` flag in ``Str`` AST node accordingly.
For python/typing#208 I'd like to distinguish between bytes, str and unicode, but the Python 2 tokenizer erases the difference between b'x' and 'x' in an early stage.
The text was updated successfully, but these errors were encountered: