From: Ezio Melotti Date: Sat, 27 Oct 2012 20:25:18 +0000 (+0300) Subject: #16337: fix typo. X-Git-Tag: v3.3.1rc1~733 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=971ba4c8170040d284ab8cf5331adcfb226156eb;p=thirdparty%2FPython%2Fcpython.git #16337: fix typo. --- diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 433befa7ea2d..4d479a7be9c6 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -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 ` sequence operations in addition to the