diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-10-27 20:25:38 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-10-27 20:25:38 (GMT) |
commit | acf1754bf3b8eb8e67e9aa6e6d181e6ac49f7778 (patch) | |
tree | 9715235aeeeb7d345089bfef2619ae46168c89ef /Doc | |
parent | 0f3dae41efc06b01d17d932fc3c586e1a2f26a3f (diff) | |
parent | 971ba4c8170040d284ab8cf5331adcfb226156eb (diff) | |
download | cpython-acf1754bf3b8eb8e67e9aa6e6d181e6ac49f7778.zip cpython-acf1754bf3b8eb8e67e9aa6e6d181e6ac49f7778.tar.gz cpython-acf1754bf3b8eb8e67e9aa6e6d181e6ac49f7778.tar.bz2 |
#16337: merge with 3.3.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/stdtypes.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 433befa..4d479a7 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 <typesseq-mutable>` sequence operations in addition to the |