obj
The underlying object of the memoryview:
>>> b = bytearray(b'xyz') >>> m = memoryview(b) >>> m.obj is b True
New in version 3.3.
obj
The underlying object of the memoryview:
>>> b = bytearray(b'xyz') >>> m = memoryview(b) >>> m.obj is b True
New in version 3.3.
Please login to continue.