[issue21672] Python for Windows 2.7.7: Path Configuration File No Longer Works With UNC Paths

2015-03-04 Thread Matt Mackall
Matt Mackall added the comment: Changeset 26ec62 regressed Mercurial. http://bz.selenic.com/show_bug.cgi?id=4557 Before: >>> ntpath.join(r'\\foo\bar\baz', '') 'foo\\bar\\baz\\' >>> ntpath.join(r'\\foo\bar', '') 'foo\\bar\\' After: >>> ntpath.join(r'\\foo\bar\baz', '') 'foo\\bar\\

[issue21672] Python for Windows 2.7.7: Path Configuration File No Longer Works With UNC Paths

2014-06-22 Thread Roundup Robot
Roundup Robot added the comment: New changeset 26ec6248ee8b by Benjamin Peterson in branch '2.7': fix ntpath.join on UNC-style paths by backporting py3k's splitdrive (closes #21672) http://hg.python.org/cpython/rev/26ec6248ee8b -- nosy: +python-dev resolution: -> fixed stage: needs pat

[issue21672] Python for Windows 2.7.7: Path Configuration File No Longer Works With UNC Paths

2014-06-22 Thread Ned Deily
Changes by Ned Deily : -- nosy: +benjamin.peterson priority: normal -> release blocker stage: -> needs patch ___ Python tracker ___ _

[issue21672] Python for Windows 2.7.7: Path Configuration File No Longer Works With UNC Paths

2014-06-05 Thread eryksun
eryksun added the comment: site.addpackage calls site.makepath(sitedir, line): def makepath(*paths): dir = os.path.join(*paths) try: dir = os.path.abspath(dir) except OSError: pass return dir, os.path.normcase(dir) In 2.7.7, os.path.j

[issue21672] Python for Windows 2.7.7: Path Configuration File No Longer Works With UNC Paths

2014-06-05 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Windows type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue21672] Python for Windows 2.7.7: Path Configuration File No Longer Works With UNC Paths

2014-06-05 Thread Jacob Blair
New submission from Jacob Blair: I just upgraded from 2.7.6 to 2.7.7, on Windows, and have encountered different behavior in my path configuration (.pth) files. One of my files had lines similar to these: \\host\sharefolder These paths (UNC-style), are not being loaded into sys.path. It is su