Fix indent on one last set of nested bullets.

This commit is contained in:
Guido van Rossum 2008-06-02 22:28:42 +00:00
parent 11bb57a6b0
commit 734d206f35
1 changed files with 8 additions and 8 deletions

View File

@ -91,18 +91,18 @@ Specification
- The algorithm to build repr() strings should be changed to:
* Convert CR, LF, TAB and '\\' to '\\r', '\\n', '\\t', '\\\\'.
* Convert CR, LF, TAB and '\\' to '\\r', '\\n', '\\t', '\\\\'.
* Convert non-printable ASCII characters(0x00-0x1f, 0x7f) to '\\xXX'.
* Convert non-printable ASCII characters(0x00-0x1f, 0x7f) to '\\xXX'.
* Convert leading surrogate pair characters without trailing character
(0xd800-0xdbff, but not followed by 0xdc00-0xdfff) to '\\uXXXX'.
* Convert leading surrogate pair characters without trailing character
(0xd800-0xdbff, but not followed by 0xdc00-0xdfff) to '\\uXXXX'.
* Convert non-printable characters(Py_UNICODE_ISPRINTABLE() returns 0)
to '\\xXX', '\\uXXXX' or '\\U00xxxxxx'.
* Convert non-printable characters(Py_UNICODE_ISPRINTABLE() returns 0)
to '\\xXX', '\\uXXXX' or '\\U00xxxxxx'.
* Backslash-escape quote characters (apostrophe, 0x27) and add quote
character at the beginning and the end.
* Backslash-escape quote characters (apostrophe, 0x27) and add quote
character at the beginning and the end.
- Set the Unicode error-handler for sys.stderr to 'backslashreplace' by
default.