This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eli.bendersky
Recipients benjamin.peterson, eli.bendersky
Date 2015-04-09.13:18:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1428585495.21.0.103830054834.issue23894@psf.upfronthosting.co.za>
In-reply-to
Content
lib2to3 tokenizes br'abc' as a single STRING token, but rb'abc' as two separate tokens (NAME "rb" and STRING 'abc')

This is because pgen2/tokenize.py doesn't list rb'' as a viable prefix for a string, even though according to https://docs.python.org/3/reference/lexical_analysis.html it is
History
Date User Action Args
2015-04-09 13:18:15eli.benderskysetrecipients: + eli.bendersky, benjamin.peterson
2015-04-09 13:18:15eli.benderskysetmessageid: <1428585495.21.0.103830054834.issue23894@psf.upfronthosting.co.za>
2015-04-09 13:18:15eli.benderskylinkissue23894 messages
2015-04-09 13:18:14eli.benderskycreate