[issue23146] Incosistency in pathlib between / and \

2015-02-15 Thread Antoine Pitrou
Antoine Pitrou added the comment: Thanks for the patch! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue23146] Incosistency in pathlib between / and \

2015-02-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0f8f24dab34b by Antoine Pitrou in branch '3.4': Issue #23146: Fix mishandling of absolute Windows paths with forward slashes in pathlib. https://hg.python.org/cpython/rev/0f8f24dab34b New changeset 0de45993c21c by Antoine Pitrou in branch 'default'

[issue23146] Incosistency in pathlib between / and \

2015-02-15 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue23146] Incosistency in pathlib between / and \

2015-02-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is a patch. It also fixes tests which didn't test altsep. -- keywords: +patch stage: needs patch -> patch review Added file: http://bugs.python.org/file38117/pathlib_parse_parts_altsep.patch ___ Python tracker

[issue23146] Incosistency in pathlib between / and \

2015-02-12 Thread Antoine Pitrou
Antoine Pitrou added the comment: Yes, this is a bug indeed. A patch would be welcome ;-) -- ___ Python tracker ___ ___ Python-bugs-li

[issue23146] Incosistency in pathlib between / and \

2015-02-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Ping. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue23146] Incosistency in pathlib between / and \

2015-01-02 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: >>> pathlib.PureWindowsPath('c:/a/b', '/x/y') PureWindowsPath('c:/x/y') >>> pathlib.PureWindowsPath('//?/c:/a/b', '/x/y') PureWindowsPath('/x/y') >>> pathlib.PureWindowsPath(r'\\?\c:\a\b', '/x/y') PureWindowsPath('//?/c:/x/y') I suppose this is because in pa