[Python-checkins] r63905 - peps/trunk/pep-3138.txt

guido.van.rossum python-checkins at python.org
Tue Jun 3 00:27:46 CEST 2008


Author: guido.van.rossum
Date: Tue Jun  3 00:27:46 2008
New Revision: 63905

Log:
Add back missing \\ in front of xXX.


Modified:
   peps/trunk/pep-3138.txt

Modified: peps/trunk/pep-3138.txt
==============================================================================
--- peps/trunk/pep-3138.txt	(original)
+++ peps/trunk/pep-3138.txt	Tue Jun  3 00:27:46 2008
@@ -99,7 +99,7 @@
    (0xd800-0xdbff, but not followed by 0xdc00-0xdfff) to '\\uXXXX'.
 
  * Convert non-printable characters(Py_UNICODE_ISPRINTABLE() returns 0)
-   to 'xXX', '\\uXXXX' or '\\U00xxxxxx'.
+   to '\\xXX', '\\uXXXX' or '\\U00xxxxxx'.
 
  * Backslash-escape quote characters (apostrophe, 0x27) and add quote
    character at the beginning and the end.


More information about the Python-checkins mailing list