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 reynir
Recipients docs@python, ezio.melotti, reynir
Date 2013-04-17.15:37:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1366213055.37.0.161368185198.issue17777@psf.upfronthosting.co.za>
In-reply-to
Content
Strings like "\u" trigger a SyntaxError. According to the language reference "all unrecognized escape sequences are left in the string unchanged"[0]. The string "\u" clearly doesn't match any of the escape sequences (in particular \uxxxx).

This may be intentional, but it is not clear from the language reference that this is the case. If it is intentional it should probably be stated more explicit in the language reference.

I think this may be confusing for new users since the syntax errors may lead them to believe the interpreter will give syntax error for all unrecognized escape sequences.

[0]: http://docs.python.org/3/reference/lexical_analysis.html#literals
History
Date User Action Args
2013-04-17 15:37:35reynirsetrecipients: + reynir, ezio.melotti, docs@python
2013-04-17 15:37:35reynirsetmessageid: <1366213055.37.0.161368185198.issue17777@psf.upfronthosting.co.za>
2013-04-17 15:37:35reynirlinkissue17777 messages
2013-04-17 15:37:34reynircreate