diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-12-16 14:34:55 +0200 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-12-16 14:34:55 +0200 |
commit | 3d7e11520e5993b2adf9b809a8342084053988ae (patch) | |
tree | 7afaf493934ca1a490aae0379ba55c78c0cf4ca8 /Lib/ntpath.py | |
parent | 8a1d1e647eb133cb1687e183dc0aefa7e2f02fdb (diff) | |
download | cpython-git-3d7e11520e5993b2adf9b809a8342084053988ae.tar.gz |
Issue #19911: ntpath.splitdrive() now correctly processes the 'İ' character
(U+0130, LATIN CAPITAL LETTER I WITH DOT ABOVE).
Diffstat (limited to 'Lib/ntpath.py')
-rw-r--r-- | Lib/ntpath.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ntpath.py b/Lib/ntpath.py index 826be87d3c..598c64f641 100644 --- a/Lib/ntpath.py +++ b/Lib/ntpath.py @@ -207,7 +207,7 @@ def splitdrive(p): empty = _get_empty(p) if len(p) > 1: sep = _get_sep(p) - normp = normcase(p) + normp = p.replace(_get_altsep(p), sep) if (normp[0:2] == sep*2) and (normp[2:3] != sep): # is a UNC path: # vvvvvvvvvvvvvvvvvvvv drive letter or UNC path |