[Python-checkins] cpython (merge 3.2 -> 3.3): Merge: Close open bracket, thanks to Josh Helzer from docs@

andrew.svetlov python-checkins at python.org
Tue Oct 2 17:42:34 CEST 2012


http://hg.python.org/cpython/rev/0837285721ab
changeset:   79411:0837285721ab
branch:      3.3
parent:      79405:9a8c193adf84
parent:      79409:e46bf2cb36c7
user:        Andrew Svetlov <andrew.svetlov at gmail.com>
date:        Tue Oct 02 18:42:22 2012 +0300
summary:
  Merge: Close open bracket, thanks to Josh Helzer from docs@

files:
  Doc/reference/datamodel.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst
--- a/Doc/reference/datamodel.rst
+++ b/Doc/reference/datamodel.rst
@@ -312,7 +312,7 @@
 
          A bytes object is an immutable array.  The items are 8-bit bytes,
          represented by integers in the range 0 <= x < 256.  Bytes literals
-         (like ``b'abc'`` and the built-in function :func:`bytes` can be used to
+         (like ``b'abc'``) and the built-in function :func:`bytes` can be used to
          construct bytes objects.  Also, bytes objects can be decoded to strings
          via the :meth:`decode` method.
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list