commit | 183a084da3c60109f072cca734eb78fcc1cf56fc | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Sun Jan 06 14:27:15 2008 +0000 |
committer | Georg Brandl <georg@python.org> | Sun Jan 06 14:27:15 2008 +0000 |
tree | bb3d08fb27b70a1ff52b83794bcff5c17a2a7e76 | |
parent | e2a902c66900d313704da1a0860c0c6e11fbab8a [diff] [blame] |
#1742: don't raise exception on os.path.relpath("a", "a"), but return os.curdir. Reported by Jesse Towner.
diff --git a/Lib/ntpath.py b/Lib/ntpath.py index fa2fc29..c4a4ac5 100644 --- a/Lib/ntpath.py +++ b/Lib/ntpath.py
@@ -490,4 +490,6 @@ i += 1 rel_list = [pardir] * (len(start_list)-i) + path_list[i:] + if not rel_list: + return curdir return join(*rel_list)