[issue19912] ntpath.splitunc() is broken and not tested

2013-12-16 Thread Roundup Robot
Roundup Robot added the comment: New changeset 129105f8457d by Serhiy Storchaka in branch '3.3': Issue #19912: Fixed numerous bugs in ntpath.splitunc(). http://hg.python.org/cpython/rev/129105f8457d New changeset 5e39c69bad21 by Serhiy Storchaka in branch 'default': Issue #19912: Fixed numerous

[issue19912] ntpath.splitunc() is broken and not tested

2013-12-16 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- resolution: - fixed stage: patch review - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19912

[issue19912] ntpath.splitunc() is broken and not tested

2013-12-16 Thread Berker Peksag
Berker Peksag added the comment: Hi Serhiy, there are commented-out lines in changeset http://hg.python.org/cpython/rev/e4beb183a674. Are they intentionally there? +#if p[1:2] == ':': +#return '', p # Drive letter present +#firstTwo = p[0:2] +#if firstTwo == '//' or

[issue19912] ntpath.splitunc() is broken and not tested

2013-12-16 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4de09cbd3b97 by Serhiy Storchaka in branch '2.7': Removed old implementation of ntpath.splitunc() (issue #19912). http://hg.python.org/cpython/rev/4de09cbd3b97 -- ___ Python tracker

[issue19912] ntpath.splitunc() is broken and not tested

2013-12-16 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Oh, my fault. Thank you Berker. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19912 ___ ___

[issue19912] ntpath.splitunc() is broken and not tested

2013-12-06 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: ntpath.splitunc() returns illegal results when path contains redundant slashes. import ntpath ntpath.splitunc(\\conky\\mountpoint\\foo\\bar) ('\\conky', '\\mountpoint\\foo\\bar') ntpath.splitunc(///conky/mountpoint/foo/bar) ('///conky',

[issue19912] ntpath.splitunc() is broken and not tested

2013-12-06 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- dependencies: +ntpath.splitdrive() fails when UNC part contains \u0130 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19912 ___