Message189502
I think you rather need the inplace shift operation. Or even the move the tail of buffer to the start without filling the remaining. I.e. something like
buffer[:size] = buffer[-size:]
but without creating immediate bytes object. Now it may be written as:
buffer[:size] = memoryview(buffer)[-size:] |
|
Date |
User |
Action |
Args |
2013-05-18 09:34:07 | serhiy.storchaka | set | recipients:
+ serhiy.storchaka, rhettinger, terry.reedy, josiahcarlson, pitrou, ethan.furman |
2013-05-18 09:34:07 | serhiy.storchaka | set | messageid: <1368869647.0.0.439219544887.issue3489@psf.upfronthosting.co.za> |
2013-05-18 09:34:06 | serhiy.storchaka | link | issue3489 messages |
2013-05-18 09:34:06 | serhiy.storchaka | create | |
|