summaryrefslogtreecommitdiff
path: root/Lib/test/test_ntpath.py
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2010-01-12 03:38:53 +0000
committerEzio Melotti <ezio.melotti@gmail.com>2010-01-12 03:38:53 +0000
commit698037a232543437a6ac0ef3ab5067da2930dda0 (patch)
tree2db2a3ee945f9668e0d092374358109782e5ba25 /Lib/test/test_ntpath.py
parent0d54bd5122b9787ff5bbbf06003df40c9e7809a6 (diff)
downloadcpython-git-698037a232543437a6ac0ef3ab5067da2930dda0.tar.gz
Merged revisions 77442 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r77442 | ezio.melotti | 2010-01-12 05:32:05 +0200 (Tue, 12 Jan 2010) | 1 line #5827: make sure that normpath preserves unicode ........
Diffstat (limited to 'Lib/test/test_ntpath.py')
-rw-r--r--Lib/test/test_ntpath.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/test/test_ntpath.py b/Lib/test/test_ntpath.py
index a077c78ff1..10bbe3a3a2 100644
--- a/Lib/test/test_ntpath.py
+++ b/Lib/test/test_ntpath.py
@@ -123,6 +123,11 @@ class TestNtpath(unittest.TestCase):
tester("ntpath.normpath('C:////a/b')", r'C:\a\b')
tester("ntpath.normpath('//machine/share//a/b')", r'\\machine\share\a\b')
+ # Issue 5827: Make sure normpath preserves unicode
+ for path in (u'', u'.', u'/', u'\\', u'///foo/.//bar//'):
+ self.assertTrue(isinstance(ntpath.normpath(path), unicode),
+ 'normpath() returned str instead of unicode')
+
def test_expandvars(self):
oldenv = os.environ.copy()
try: