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

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


Author: guido.van.rossum
Date: Tue Jun  3 00:28:42 2008
New Revision: 63906

Log:
Fix indent on one last set of nested bullets.


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:28:42 2008
@@ -91,18 +91,18 @@
 
 - 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.


More information about the Python-checkins mailing list