From 11bb57a6b098436977b8fb216591e4137f0078d6 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 2 Jun 2008 22:27:46 +0000 Subject: [PATCH] Add back missing \\ in front of xXX. --- pep-3138.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pep-3138.txt b/pep-3138.txt index 11a422443..d100fc205 100644 --- a/pep-3138.txt +++ b/pep-3138.txt @@ -99,7 +99,7 @@ Specification (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.