Message73817
bytes_count() doesn't check start maximum value: _adjust_indices()
should check that start is smaller than len (smaller or egal? len or
len-1?). Example:
>>> b = bytearray(3)
>>> b.count("x", 1491491034, 0)
start=1491491034 should be replaced by 3 (or 2 or 4? I don't know
bytearray enough). |
|
Date |
User |
Action |
Args |
2008-09-25 21:39:33 | vstinner | set | recipients:
+ vstinner |
2008-09-25 21:39:33 | vstinner | set | messageid: <1222378773.15.0.652876026067.issue3967@psf.upfronthosting.co.za> |
2008-09-25 21:39:32 | vstinner | link | issue3967 messages |
2008-09-25 21:39:32 | vstinner | create | |
|