This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Matt.Mackall
Recipients Matt.Mackall, benjamin.peterson, eryksun, jblairpdx, python-dev
Date 2015-03-04.19:23:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1425497034.4.0.0494568899875.issue21672@psf.upfronthosting.co.za>
In-reply-to
Content
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\\baz\\'
>>> ntpath.join(r'\\foo\bar', '')
'\\\\foo\\bar'
History
Date User Action Args
2015-03-04 19:23:54Matt.Mackallsetrecipients: + Matt.Mackall, benjamin.peterson, python-dev, eryksun, jblairpdx
2015-03-04 19:23:54Matt.Mackallsetmessageid: <1425497034.4.0.0494568899875.issue21672@psf.upfronthosting.co.za>
2015-03-04 19:23:54Matt.Mackalllinkissue21672 messages
2015-03-04 19:23:54Matt.Mackallcreate