This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author exarkun
Recipients exarkun
Date 2012-09-15.10:27:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1347704879.16.0.744568990947.issue15945@psf.upfronthosting.co.za>
In-reply-to
Content
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'
>>>
History
Date User Action Args
2012-09-15 10:27:59exarkunsetrecipients: + exarkun
2012-09-15 10:27:59exarkunsetmessageid: <1347704879.16.0.744568990947.issue15945@psf.upfronthosting.co.za>
2012-09-15 10:27:58exarkunlinkissue15945 messages
2012-09-15 10:27:58exarkuncreate