[Python-checkins] cpython (3.3): #16337: fix typo.

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


http://hg.python.org/cpython/rev/a0e206000051
changeset:   79987:a0e206000051
branch:      3.3
parent:      79985:7cabdb58fb23
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Sat Oct 27 23:25:18 2012 +0300
summary:
  #16337: fix typo.

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