summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-02-18 10:21:30 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-02-18 10:21:30 (GMT)
commit407aa2df2aa81180df611148fbfe7a7f57673a74 (patch)
tree06e1395d9534ba27344ed479a32794a05f76cfe9
parentf844f7e361bd23358d511bb74c71b01c5207e191 (diff)
parent467393dff5666b87eafe46660abf6ea0e2018c64 (diff)
downloadcpython-407aa2df2aa81180df611148fbfe7a7f57673a74.zip
cpython-407aa2df2aa81180df611148fbfe7a7f57673a74.tar.gz
cpython-407aa2df2aa81180df611148fbfe7a7f57673a74.tar.bz2
Fix posixpath.realpath() for multiple pardirs (fixes issue #6975).
-rw-r--r--Lib/posixpath.py6
-rw-r--r--Lib/test/test_posixpath.py18
2 files changed, 22 insertions, 2 deletions
diff --git a/Lib/posixpath.py b/Lib/posixpath.py
index d089809..b1e1a92 100644
--- a/Lib/posixpath.py
+++ b/Lib/posixpath.py
@@ -418,9 +418,11 @@ def _joinrealpath(path, rest, seen):
if name == pardir:
# parent dir
if path:
- path = dirname(path)
+ path, name = split(path)
+ if name == pardir:
+ path = join(path, pardir, pardir)
else:
- path = name
+ path = pardir
continue
newpath = join(path, name)
if not islink(newpath):
diff --git a/Lib/test/test_posixpath.py b/Lib/test/test_posixpath.py
index 3af9175..01d84da 100644
--- a/Lib/test/test_posixpath.py
+++ b/Lib/test/test_posixpath.py
@@ -340,6 +340,24 @@ class PosixPathTest(unittest.TestCase):
self.assertEqual(posixpath.normpath(b"///..//./foo/.//bar"),
b"/foo/bar")
+ def test_realpath_curdir(self):
+ self.assertEqual(realpath('.'), os.getcwd())
+ self.assertEqual(realpath('./.'), os.getcwd())
+ self.assertEqual(realpath('/'.join(['.'] * 100)), os.getcwd())
+
+ self.assertEqual(realpath(b'.'), os.getcwdb())
+ self.assertEqual(realpath(b'./.'), os.getcwdb())
+ self.assertEqual(realpath(b'/'.join([b'.'] * 100)), os.getcwdb())
+
+ def test_realpath_pardir(self):
+ self.assertEqual(realpath('..'), dirname(os.getcwd()))
+ self.assertEqual(realpath('../..'), dirname(dirname(os.getcwd())))
+ self.assertEqual(realpath('/'.join(['..'] * 100)), '/')
+
+ self.assertEqual(realpath(b'..'), dirname(os.getcwdb()))
+ self.assertEqual(realpath(b'../..'), dirname(dirname(os.getcwdb())))
+ self.assertEqual(realpath(b'/'.join([b'..'] * 100)), b'/')
+
@unittest.skipUnless(hasattr(os, "symlink"),
"Missing symlink implementation")
@skip_if_ABSTFN_contains_backslash