Message172690
Well, the fact that memoryview + bytes wouldn't return you a memoryview object might be a good reason to disallow it. Compare with:
>>> bytearray(b"x") + b"y"
bytearray(b'xy')
>>> b"x" + bytearray(b"y")
b'xy' |
|
Date |
User |
Action |
Args |
2012-10-11 20:32:23 | pitrou | set | recipients:
+ pitrou, exarkun, glyph, Arfrever, skrah |
2012-10-11 20:32:23 | pitrou | set | messageid: <1349987543.92.0.556191239125.issue15945@psf.upfronthosting.co.za> |
2012-10-11 20:32:23 | pitrou | link | issue15945 messages |
2012-10-11 20:32:23 | pitrou | create | |
|