]> granicus.if.org Git - python/commitdiff
#16337: fix typo.
authorEzio Melotti <ezio.melotti@gmail.com>
Sat, 27 Oct 2012 20:25:18 +0000 (23:25 +0300)
committerEzio Melotti <ezio.melotti@gmail.com>
Sat, 27 Oct 2012 20:25:18 +0000 (23:25 +0300)
Doc/library/stdtypes.rst

index 433befa7ea2d8758b012383aa180285381de32ab..4d479a7be9c67b6c5662f1e10b0e1bda97996dae 100644 (file)
@@ -2164,7 +2164,7 @@ they are always created by calling the constructor:
 * 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