Clarify a sentence by adding a comma, and add back a \ that was

dropped in front of an x.
This commit is contained in:
Guido van Rossum 2008-05-31 16:33:45 +00:00
parent 3bba8241c6
commit 7eb23cdb53
1 changed files with 3 additions and 3 deletions

View File

@ -74,9 +74,9 @@ Specification
* Convert leading surrogate pair characters without trailing character
(0xd800-0xdbff, but not followed by 0xdc00-0xdfff) to '\\uXXXX'.
* Convert Unicode whitespace other than ASCII space('\\x20') and
control characters (categories Z* and C* in the Unicode database)
to 'xXX', '\\uXXXX' or '\\U00xxxxxx'.
* Convert Unicode whitespace other than ASCII space('\\x20'), and
control characters (categories Z* and C* in the Unicode database),
to '\\xXX', '\\uXXXX' or '\\U00xxxxxx'.
- Set the Unicode error-handler for sys.stdout and sys.stderr to
'backslashreplace' by default.