This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author gumpy
Recipients gumpy, pitrou
Date 2008-12-06.05:25:34
SpamBayes Score 0.012007479
Marked as misclassified No
Message-id <1228541136.47.0.414208520034.issue4509@psf.upfronthosting.co.za>
In-reply-to
Content
I've found that arrays from the array module have similar issues:

>>> a = array.array('i', range(2))
>>> m = memoryview(a)
>>> bytes(m)
b'\x00\x00\x00\x00\x01\x00\x00\x00'
>>> a.pop(0)
0
>>> bytes(m)
b'\x01\x00\x00\x00\x01\x00\x00\x00'
History
Date User Action Args
2008-12-06 05:25:37gumpysetrecipients: + gumpy, pitrou
2008-12-06 05:25:36gumpysetmessageid: <1228541136.47.0.414208520034.issue4509@psf.upfronthosting.co.za>
2008-12-06 05:25:35gumpylinkissue4509 messages
2008-12-06 05:25:34gumpycreate