Message82912
I think more *bytes* cleanup is needed for mmap module documentation &
implementation. (and other modules?) Especially mmap.find() and its friends.
>>> import mmap
>>> m = mmap.mmap(-1, 10)
>>> m[:] = b"0123456789"
>>> m.find(b'2')
2
>>> m.find('2') # XXX: accepts unicode
2 |
|
| Date |
User |
Action |
Args |
| 2009-02-28 14:49:00 | ocean-city | set | recipients:
+ ocean-city, loewis, vstinner |
| 2009-02-28 14:49:00 | ocean-city | set | messageid: <[email protected]> |
| 2009-02-28 14:48:58 | ocean-city | link | issue5391 messages |
| 2009-02-28 14:48:58 | ocean-city | create | |
|