diff options
author | Hirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp> | 2010-10-18 13:49:09 +0000 |
---|---|---|
committer | Hirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp> | 2010-10-18 13:49:09 +0000 |
commit | 089144e511ca4b388ce8b29ecf2965a8215ff238 (patch) | |
tree | 2cb4c09dc5d4bca6972fd590bae549e0b386ad89 /Lib/test/test_ntpath.py | |
parent | fd6a55ec41fe2bd46cf0a5b4ebabb62eda5a19d7 (diff) | |
download | cpython-git-089144e511ca4b388ce8b29ecf2965a8215ff238.tar.gz |
Merged revisions 85689 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r85689 | hirokazu.yamamoto | 2010-10-18 21:13:18 +0900 | 3 lines
Issue #5117: Case normalization was needed on ntpath.relpath(). And
fixed root directory issue on posixpath.relpath(). (Ported working fixes
from ntpath)
........
Diffstat (limited to 'Lib/test/test_ntpath.py')
-rw-r--r-- | Lib/test/test_ntpath.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_ntpath.py b/Lib/test/test_ntpath.py index 8ff7075ae5..3d18527243 100644 --- a/Lib/test/test_ntpath.py +++ b/Lib/test/test_ntpath.py @@ -236,6 +236,7 @@ class TestNtpath(unittest.TestCase): tester('ntpath.relpath("/", "/")', '.') tester('ntpath.relpath("/a", "/a")', '.') tester('ntpath.relpath("/a/b", "/a/b")', '.') + tester('ntpath.relpath("c:/foo", "C:/FOO")', '.') def test_main(): |