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 steven.daprano
Recipients docs@python, steven.daprano
Date 2013-07-27.16:12:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1374941533.84.0.352957238503.issue18572@psf.upfronthosting.co.za>
In-reply-to
Content
The documentation for string escapes suggests that \uxxxx escapes can be used to generate characters in the Supplementary Multilingual Planes by using surrogate pairs:

"Individual code units which form parts of a surrogate pair can be encoded using this escape sequence."

http://docs.python.org/3/reference/lexical_analysis.html#string-and-bytes-literals

E.g. in Python 3.2:

py> '\uD80C\uDC80' == '\U00013080'
True

but that is no longer the case in Python 3.3. I suggest the documentation should just remove that note.
History
Date User Action Args
2013-07-27 16:12:13steven.dapranosetrecipients: + steven.daprano, docs@python
2013-07-27 16:12:13steven.dapranosetmessageid: <1374941533.84.0.352957238503.issue18572@psf.upfronthosting.co.za>
2013-07-27 16:12:13steven.dapranolinkissue18572 messages
2013-07-27 16:12:13steven.dapranocreate