[Python-checkins] r54416 - peps/trunk/pep-3112.txt

david.goodger python-checkins at python.org
Fri Mar 16 21:01:58 CET 2007


Author: david.goodger
Date: Fri Mar 16 21:01:57 2007
New Revision: 54416

Modified:
   peps/trunk/pep-3112.txt
Log:
markup & punctuation fixes

Modified: peps/trunk/pep-3112.txt
==============================================================================
--- peps/trunk/pep-3112.txt	(original)
+++ peps/trunk/pep-3112.txt	Fri Mar 16 21:01:57 2007
@@ -62,7 +62,7 @@
 ===============
 
 The proposed syntax is an extension of the existing string
-syntax. [#stringliterals]_
+syntax [#stringliterals]_.
 
 The new syntax for strings, including the new bytes literal, is::
 
@@ -89,12 +89,12 @@
   between 1 and 127 inclusive, regardless of any encoding
   declaration [#encodings]_ in the source file.
 
-- The Unicode-specific escape sequences ``\u``*xxxx*,
-  ``\U``*xxxxxxxx*, and ``\N{``*name*``}`` are unrecognized in
+- The Unicode-specific escape sequences ``\u``\ *xxxx*,
+  ``\U``\ *xxxxxxxx*, and ``\N{``\ *name*\ ``}`` are unrecognized in
   Python 2.x and forbidden in Python 3000.
 
 Adjacent bytes literals are subject to the same concatenation rules as
-adjacent string literals. [#concat]_  A bytes literal adjacent to a
+adjacent string literals [#concat]_.  A bytes literal adjacent to a
 string literal is an error.
 
 
@@ -127,7 +127,7 @@
 A bytes literal produces a new object each time it is evaluated, like
 list displays and unlike string literals.  This is necessary because
 bytes literals, like lists and unlike strings, are
-mutable. [#eachnew]_
+mutable [#eachnew]_.
 
 
 Reference Implementation


More information about the Python-checkins mailing list