[Python-checkins] cpython (merge 3.3 -> default): #16337: merge with 3.3.

ezio.melotti python-checkins at python.org
Sat Oct 27 22:25:50 CEST 2012


http://hg.python.org/cpython/rev/fd3bc0323505
changeset:   79988:fd3bc0323505
parent:      79986:9a97b6d2e24a
parent:      79987:a0e206000051
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Sat Oct 27 23:25:38 2012 +0300
summary:
  #16337: merge with 3.3.

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


diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -2164,7 +2164,7 @@
 * Creating an empty instance: ``bytearray()``
 * Creating a zero-filled instance with a given length: ``bytearray(10)``
 * From an iterable of integers: ``bytearray(range(20))``
-* Copying existing binary data via the buffer protocol:  ``bytearray(b'Hi!)``
+* Copying existing binary data via the buffer protocol:  ``bytearray(b'Hi!')``
 
 As bytearray objects are mutable, they support the
 :ref:`mutable <typesseq-mutable>` sequence operations in addition to the

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


More information about the Python-checkins mailing list