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 pitrou
Recipients Arfrever, exarkun, glyph, pitrou, skrah
Date 2012-10-11.20:32:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1349987543.92.0.556191239125.issue15945@psf.upfronthosting.co.za>
In-reply-to
Content
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'
History
Date User Action Args
2012-10-11 20:32:23pitrousetrecipients: + pitrou, exarkun, glyph, Arfrever, skrah
2012-10-11 20:32:23pitrousetmessageid: <1349987543.92.0.556191239125.issue15945@psf.upfronthosting.co.za>
2012-10-11 20:32:23pitroulinkissue15945 messages
2012-10-11 20:32:23pitroucreate