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 pitrou
Recipients Matt.Gattis, georg.brandl, pitrou
Date 2010-08-02.16:49:42
SpamBayes Score 0.003838324
Marked as misclassified No
Message-id <1280767783.75.0.545236411937.issue8042@psf.upfronthosting.co.za>
In-reply-to
Content
If you want to slice into a writable buffer, you can use a memoryview:

>>> b = io.BytesIO(b"abc")
>>> m = mmap.mmap(-1, 10)
>>> b.readinto(memoryview(m)[5:])
3
>>> m[:]
b'\x00\x00\x00\x00\x00abc\x00\x00'

This only works on 3.x, though.
As for changing the mmap buffer implementation, it would break compatibility and is therefore not acceptable, sorry.
History
Date User Action Args
2010-08-02 16:49:44pitrousetrecipients: + pitrou, georg.brandl, Matt.Gattis
2010-08-02 16:49:43pitrousetmessageid: <1280767783.75.0.545236411937.issue8042@psf.upfronthosting.co.za>
2010-08-02 16:49:42pitroulinkissue8042 messages
2010-08-02 16:49:42pitroucreate