]> granicus.if.org Git - python/commit
Change ntpath.join() so that join("d:/", "/whatever") returns
authorTim Peters <tim.peters@gmail.com>
Thu, 26 Jul 2001 21:54:37 +0000 (21:54 +0000)
committerTim Peters <tim.peters@gmail.com>
Thu, 26 Jul 2001 21:54:37 +0000 (21:54 +0000)
commit4223f89eddc55c68f7b05aa33bc595e7791c362c
tree3cb349695bfbd91f567951ad97b74894c8ba68e2
parent76f373d081a38ed49d56540298123bd1e0bcd0cd
Change ntpath.join() so that join("d:/", "/whatever") returns
d:/whatever instead of /whatever.  While I'm afraid changing isabs()
to be *consistent* with this would break lots of code, it makes
best sense for join() to do it this way.  Thanks to Alex Martelli for
pushing back on this one!
Lib/ntpath.py
Lib/test/test_ntpath.py