[Python-checkins] r54111 - peps/trunk/pep-3112.txt
david.goodger
python-checkins at python.org
Sun Mar 4 07:05:32 CET 2007
Author: david.goodger
Date: Sun Mar 4 07:05:29 2007
New Revision: 54111
Modified:
peps/trunk/pep-3112.txt
Log:
fixed markup; added PEP number to header
Modified: peps/trunk/pep-3112.txt
==============================================================================
--- peps/trunk/pep-3112.txt (original)
+++ peps/trunk/pep-3112.txt Sun Mar 4 07:05:29 2007
@@ -1,4 +1,4 @@
-PEP:
+PEP: 3112
Title: Bytes literals in Python 3000
Version: $Revision$
Last-Modified: $Date$
@@ -64,7 +64,7 @@
The proposed syntax is an extension of the existing string
syntax. [#stringliterals]_
-The new syntax for strings, including the new bytes literal, is:
+The new syntax for strings, including the new bytes literal, is::
stringliteral: [stringprefix] (shortstring | longstring)
stringprefix: "b" | "r" | "br" | "B" | "R" | "BR" | "Br" | "bR"
@@ -103,7 +103,7 @@
Each evaluation of a bytes literal produces a new ``bytes`` object.
The bytes in the new object are the bytes represented by the
-``shortstringitem``s or ``longstringitem``s in the literal, in the
+``shortstringitem`` or ``longstringitem`` parts of the literal, in the
same order.
More information about the Python-checkins
mailing list