Issue #19911: ntpath.splitdrive() now correctly processes the 'İ' character

(U+0130, LATIN CAPITAL LETTER I WITH DOT ABOVE).
This commit is contained in:
Serhiy Storchaka 2013-12-16 14:36:10 +02:00
commit f5ad91c392
3 changed files with 7 additions and 1 deletions

View file

@ -66,6 +66,9 @@ class TestNtpath(unittest.TestCase):
('', '\\\\conky\\\\mountpoint\\foo\\bar'))
tester('ntpath.splitdrive("//conky//mountpoint/foo/bar")',
('', '//conky//mountpoint/foo/bar'))
# Issue #19911: UNC part containing U+0130
self.assertEqual(ntpath.splitdrive('//conky/MOUNTPOİNT/foo/bar'),
('//conky/MOUNTPOİNT', '/foo/bar'))
def test_split(self):
tester('ntpath.split("c:\\foo\\bar")', ('c:\\foo', 'bar'))