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 ezio.melotti
Recipients Edward.K..Ream, ezio.melotti
Date 2013-04-26.13:47:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1366984077.18.0.0875400057989.issue17850@psf.upfronthosting.co.za>
In-reply-to
Content
This is not a bug, \U should be followed by 8 hex digits and it indicates a Unicode codepoint:
>>> '\\u0065'.decode('unicode_escape')
u'e'
>>> '\\U00000065'.decode('unicode_escape')
u'e'
>>> '\\Upsilon'.decode('unicode_escape')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
UnicodeDecodeError: 'unicodeescape' codec can't decode bytes in position 0-7: end of string in escape sequence
>>> u'\Upsilon'
  File "<stdin>", line 1
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 0-7: end of string in escape sequence
>>> u'\U00000065'
u'e'
History
Date User Action Args
2013-04-26 13:47:57ezio.melottisetrecipients: + ezio.melotti, Edward.K..Ream
2013-04-26 13:47:57ezio.melottisetmessageid: <1366984077.18.0.0875400057989.issue17850@psf.upfronthosting.co.za>
2013-04-26 13:47:57ezio.melottilinkissue17850 messages
2013-04-26 13:47:56ezio.melotticreate