mirror of https://github.com/python/cpython
must be bytes
This commit is contained in:
parent
b48f63433e
commit
5250401bd0
|
@ -2342,7 +2342,7 @@ simple bytes or complex data structures.
|
|||
>>> v = memoryview(data)
|
||||
>>> v.readonly
|
||||
False
|
||||
>>> v[0] = 'z'
|
||||
>>> v[0] = b'z'
|
||||
>>> data
|
||||
bytearray(b'zbcefg')
|
||||
>>> v[1:4] = b'123'
|
||||
|
|
Loading…
Reference in New Issue