Message170511
Python 3.3.0rc2+ (default:9def2209a839, Sep 10 2012, 08:44:51)
[GCC 4.6.3] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> memoryview(b'foo') + b'bar'
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: unsupported operand type(s) for +: 'memoryview' and 'bytes'
>>> b'bar' + memoryview(b'foo')
b'barfoo'
>>> |
|
Date |
User |
Action |
Args |
2012-09-15 10:27:59 | exarkun | set | recipients:
+ exarkun |
2012-09-15 10:27:59 | exarkun | set | messageid: <1347704879.16.0.744568990947.issue15945@psf.upfronthosting.co.za> |
2012-09-15 10:27:58 | exarkun | link | issue15945 messages |
2012-09-15 10:27:58 | exarkun | create | |
|