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 jmillikin
Recipients jmillikin
Date 2008-04-03.04:19:02
SpamBayes Score 0.3936553
Marked as misclassified No
Message-id <1207196346.81.0.74505060161.issue2541@psf.upfronthosting.co.za>
In-reply-to
Content
According to
<http://docs.python.org/dev/3.0/reference/lexical_analysis.html#id9>,
raw strings with \u and \U escape sequences should have these sequences
parsed as usual. However, they are currently escaped.

>>> r'\u0020'
'\\u0020'

Expected:
>>> r'\u0020'
' '
History
Date User Action Args
2008-04-03 04:19:07jmillikinsetspambayes_score: 0.393655 -> 0.3936553
recipients: + jmillikin
2008-04-03 04:19:06jmillikinsetspambayes_score: 0.393655 -> 0.393655
messageid: <1207196346.81.0.74505060161.issue2541@psf.upfronthosting.co.za>
2008-04-03 04:19:03jmillikinlinkissue2541 messages
2008-04-03 04:19:02jmillikincreate