[issue3486] bytes.join does not accept a sequence of bytearrays

2010-10-21 Thread Georg Brandl
Georg Brandl added the comment: py3k bytes won't be backported now. -- nosy: +georg.brandl resolution: -> wont fix status: open -> closed ___ Python tracker ___

[issue3486] bytes.join does not accept a sequence of bytearrays

2009-05-16 Thread Daniel Diniz
Daniel Diniz added the comment: How about adding a note on this to 2.6 docs and be done with it? -- nosy: +ajaksu2 ___ Python tracker ___

[issue3486] bytes.join does not accept a sequence of bytearrays

2008-08-01 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I suppose this is because bytes is simply aliased to str. I propose we just leave it as is. The ultimate solution is probably backporting th py3k PyBytes type. -- nosy: +benjamin.peterson ___ Py

[issue3486] bytes.join does not accept a sequence of bytearrays

2008-08-01 Thread Antoine Pitrou
New submission from Antoine Pitrou <[EMAIL PROTECTED]>: This works in py3k but not in 2.x. I don't know if it is deliberate: Python 3.0b2+ (py3k, Jul 27 2008, 12:52:40) [GCC 4.3.1 20080626 (prerelease)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> b"".joi