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 petri.lehtinen
Recipients flox, meador.inge, ncoghlan, petri.lehtinen, pitrou
Date 2011-11-03.07:47:36
SpamBayes Score 2.6414426e-12
Marked as misclassified No
Message-id <20111103074725.GE4458@p16>
In-reply-to <1320287152.14.0.86027448534.issue13298@psf.upfronthosting.co.za>
Content
> Note that .join() has a slightly different behaviour:
> 
> >>> b"".join([bytearray(), b""])
> b''
> >>> bytearray().join([bytearray(), b""])
> bytearray(b'')
> >>> b"".join([bytearray(), memoryview(b"")])
> Traceback (most recent call last):
>   File "<stdin>", line 1, in <module>
> TypeError: sequence item 1: expected bytes, memoryview found

I thinks this is worth fixing. Is there an issue already?
History
Date User Action Args
2011-11-03 07:47:37petri.lehtinensetrecipients: + petri.lehtinen, ncoghlan, pitrou, flox, meador.inge
2011-11-03 07:47:36petri.lehtinenlinkissue13298 messages
2011-11-03 07:47:36petri.lehtinencreate