[issue22034] posixpath.join() and bytearray

2014-08-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue22034] posixpath.join() and bytearray

2014-08-24 Thread Roundup Robot
Roundup Robot added the comment: New changeset d9607a71456e by Serhiy Storchaka in branch '3.4': Issue #22034: Got rid of misleading error message for bytearray arguments in http://hg.python.org/cpython/rev/d9607a71456e New changeset db600c927b2b by Serhiy Storchaka in branch 'default': Issue #2

[issue22034] posixpath.join() and bytearray

2014-08-17 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Could anyone please make the review? -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___

[issue22034] posixpath.join() and bytearray

2014-08-13 Thread Georg Brandl
Changes by Georg Brandl : -- nosy: -georg.brandl ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue22034] posixpath.join() and bytearray

2014-08-13 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Copied nosy list from issue15180 and issue15377. -- nosy: +Arfrever, chris.jerdonek, eric.araujo, georg.brandl, pitrou, r.david.murray, terry.reedy ___ Python tracker __

[issue22034] posixpath.join() and bytearray

2014-07-22 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : Added file: http://bugs.python.org/file36029/posixpath_join_bytearray-3.5.diff ___ Python tracker ___ ___ Python

[issue22034] posixpath.join() and bytearray

2014-07-22 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: posixpath.join() raises misleading exception in case when all arguments are bytearrays: >>> import posixpath >>> posixpath.join(bytearray(b'foo'), bytearray(b'bar')) Traceback (most recent call last): File "", line 1, in File "/home/serhiy/py/cpython/L