Fix indent on one last set of nested bullets.
This commit is contained in:
parent
11bb57a6b0
commit
734d206f35
16
pep-3138.txt
16
pep-3138.txt
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue