diff options
author | Sandro Tosi <sandro.tosi@gmail.com> | 2012-02-18 15:06:39 (GMT) |
---|---|---|
committer | Sandro Tosi <sandro.tosi@gmail.com> | 2012-02-18 15:06:39 (GMT) |
commit | b5d271073fdcc216e9a390dd25de403520240a05 (patch) | |
tree | 421816e93885a7791d723f629cafd20479e7cc5e /Doc | |
parent | 3ccc918b4addd3c189c4214f5283fa9aae980f41 (diff) | |
parent | c33ae06cbf9deae1ef6bb56d59c710c0b55b61f0 (diff) | |
download | cpython-b5d271073fdcc216e9a390dd25de403520240a05.zip cpython-b5d271073fdcc216e9a390dd25de403520240a05.tar.gz cpython-b5d271073fdcc216e9a390dd25de403520240a05.tar.bz2 |
merge with 3.2
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 a2ee932..aab8d2e 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -2421,7 +2421,7 @@ copying. Memory is generally interpreted as simple bytes. bytearray(b'zbcefg') >>> v[1:4] = b'123' >>> data - bytearray(b'a123fg') + bytearray(b'z123fg') >>> v[2] = b'spam' Traceback (most recent call last): File "<stdin>", line 1, in <module> |