[Python-Dev] cpython (2.7): Fix posixpath.realpath() for multiple pardirs (fixes issue #6975).
Antoine Pitrou
solipsis at pitrou.net
Mon Feb 18 18:26:09 CET 2013
More information about the Python-Dev mailing list
Mon Feb 18 18:26:09 CET 2013
- Previous message: [Python-Dev] Rationale for different signatures of tuple.__new__ and namedtuple.__new__
- Next message: [Python-Dev] cpython (2.7): Fix posixpath.realpath() for multiple pardirs (fixes issue #6975).
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On Mon, 18 Feb 2013 11:24:40 +0100 (CET) serhiy.storchaka <python-checkins at python.org> wrote: > > + def test_realpath_curdir(self): > + self.assertEqual(realpath('.'), os.getcwd()) > + self.assertEqual(realpath('./.'), os.getcwd()) > + self.assertEqual(realpath('/'.join(['.'] * 100)), os.getcwd()) > + > + def test_realpath_pardir(self): > + self.assertEqual(realpath('..'), dirname(os.getcwd())) > + self.assertEqual(realpath('../..'), dirname(dirname(os.getcwd()))) > + self.assertEqual(realpath('/'.join(['..'] * 100)), '/') What if there's a symlink along os.getcwd()? Regards Antoine.
- Previous message: [Python-Dev] Rationale for different signatures of tuple.__new__ and namedtuple.__new__
- Next message: [Python-Dev] cpython (2.7): Fix posixpath.realpath() for multiple pardirs (fixes issue #6975).
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-Dev mailing list