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 markeganfuller
Recipients docs@python, ezio.melotti, markeganfuller, r.david.murray, reynir, tim.golden
Date 2013-09-23.10:28:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1379932082.55.0.506081911596.issue17777@psf.upfronthosting.co.za>
In-reply-to
Content
Python correctly throws a unicode error here, directing the user towards the fact that this is an issue specifically with the unicode escaping.

>>> "\u"
  File "<stdin>", line 1
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 0-1: truncated \uXXXX escape


The documentation also states that "Any Unicode character can be encoded this way. Exactly eight hex digits are required."[0].

Propose closing this as Won't Fix.

[0]: http://docs.python.org/3/reference/lexical_analysis.html#literals
History
Date User Action Args
2013-09-23 10:28:02markeganfullersetrecipients: + markeganfuller, tim.golden, ezio.melotti, r.david.murray, docs@python, reynir
2013-09-23 10:28:02markeganfullersetmessageid: <1379932082.55.0.506081911596.issue17777@psf.upfronthosting.co.za>
2013-09-23 10:28:02markeganfullerlinkissue17777 messages
2013-09-23 10:28:02markeganfullercreate