summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorRonald Oussoren <ronaldoussoren@mac.com>2011-05-06 15:11:44 (GMT)
committerRonald Oussoren <ronaldoussoren@mac.com>2011-05-06 15:11:44 (GMT)
commit45fd0c9931dbc25c2577e0b17672dffc36a03868 (patch)
tree54a51957f46adff248481f2dab85d59575999ceb /Lib
parentff9bfca4827a6ad323c9eff359e34e10655fdc93 (diff)
parent6355c16d3623921cbecb156c23349b8a6fe32827 (diff)
downloadcpython-45fd0c9931dbc25c2577e0b17672dffc36a03868.zip
cpython-45fd0c9931dbc25c2577e0b17672dffc36a03868.tar.gz
cpython-45fd0c9931dbc25c2577e0b17672dffc36a03868.tar.bz2
merge from 3.2
Diffstat (limited to 'Lib')
-rw-r--r--Lib/ntpath.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ntpath.py b/Lib/ntpath.py
index 419342d..ec8a7ab 100644
--- a/Lib/ntpath.py
+++ b/Lib/ntpath.py
@@ -654,7 +654,7 @@ except (AttributeError, ImportError):
# Non-Windows operating systems fake this method with an XP
# approximation.
def _getfinalpathname(f):
- return abspath(f)
+ return normcase(abspath(f))
def samefile(f1, f2):
"Test whether two pathnames reference the same actual file"