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 gvanrossum
Recipients gvanrossum
Date 2008-04-05.14:45:35
SpamBayes Score 0.032726828
Marked as misclassified No
Message-id <1207406736.51.0.485444430847.issue2557@psf.upfronthosting.co.za>
In-reply-to
Content
In 2.x, \uDDDD and \UDDDDDDDD are interpreted as Unicode escapes in
raw Unicode strings. That was a mistake, but we can't fix it (except
when using "from __future__ import unicode_literals"). In 3.0, \u or
\U in a raw string should have no special meaning -- it's just a
backslash followed by 'u' or 'U'.

This was fixed in 3.0a3. It seems to have reverted to the old (2.x)
behavior in 3.0a4.

THIS MUST BE FIXED!
History
Date User Action Args
2008-04-05 14:45:36gvanrossumsetspambayes_score: 0.0327268 -> 0.032726828
recipients: + gvanrossum
2008-04-05 14:45:36gvanrossumsetspambayes_score: 0.0327268 -> 0.0327268
messageid: <1207406736.51.0.485444430847.issue2557@psf.upfronthosting.co.za>
2008-04-05 14:45:35gvanrossumlinkissue2557 messages
2008-04-05 14:45:35gvanrossumcreate