changeset: 99782:9c49c417a68a branch: 3.5 parent: 99779:9826dbad1252 parent: 99781:7e9605697dfc user: Guido van Rossum date: Wed Jan 06 11:03:15 2016 -0800 files: Lib/pathlib.py Lib/test/test_pathlib.py Misc/NEWS description: Issue #22570: Add 'path' attribute to pathlib.Path objects. (Merge 3.4->3.5) diff -r 9826dbad1252 -r 9c49c417a68a Lib/pathlib.py --- a/Lib/pathlib.py Wed Jan 06 10:35:30 2016 -0800 +++ b/Lib/pathlib.py Wed Jan 06 11:03:15 2016 -0800 @@ -690,6 +690,13 @@ self._parts) or '.' return self._str + @property + def path(self): + try: + return self._str + except AttributeError: + return str(self) + def as_posix(self): """Return the string representation of the path with forward (/) slashes.""" diff -r 9826dbad1252 -r 9c49c417a68a Lib/test/test_pathlib.py --- a/Lib/test/test_pathlib.py Wed Jan 06 10:35:30 2016 -0800 +++ b/Lib/test/test_pathlib.py Wed Jan 06 11:03:15 2016 -0800 @@ -477,6 +477,22 @@ self.assertEqual(P('a/b.py').name, 'b.py') self.assertEqual(P('/a/b.py').name, 'b.py') + def test_path_common(self): + P = self.cls + def check(arg, expected=None): + if expected is None: + expected = arg + self.assertEqual(P(arg).path, expected.replace('/', self.sep)) + check('', '.') + check('.') + check('/') + check('a/b') + check('/a/b') + check('/a/b/', '/a/b') + check('/a/b/.', '/a/b') + check('a/b.py') + check('/a/b.py') + def test_suffix_common(self): P = self.cls self.assertEqual(P('').suffix, '') @@ -899,6 +915,17 @@ self.assertEqual(P('//My.py/Share.php').name, '') self.assertEqual(P('//My.py/Share.php/a/b').name, 'b') + def test_path(self): + P = self.cls + self.assertEqual(P('c:').path, 'c:') + self.assertEqual(P('c:/').path, 'c:\\') + self.assertEqual(P('c:a/b').path, 'c:a\\b') + self.assertEqual(P('c:/a/b').path, 'c:\\a\\b') + self.assertEqual(P('c:a/b.py').path, 'c:a\\b.py') + self.assertEqual(P('c:/a/b.py').path, 'c:\\a\\b.py') + self.assertEqual(P('//My.py/Share.php').path, '\\\\My.py\\Share.php\\') + self.assertEqual(P('//My.py/Share.php/a/b').path, '\\\\My.py\\Share.php\\a\\b') + def test_suffix(self): P = self.cls self.assertEqual(P('c:').suffix, '') diff -r 9826dbad1252 -r 9c49c417a68a Misc/NEWS --- a/Misc/NEWS Wed Jan 06 10:35:30 2016 -0800 +++ b/Misc/NEWS Wed Jan 06 11:03:15 2016 -0800 @@ -41,6 +41,12 @@ Library ------- +- Issue #22570: Add 'path' attribute to pathlib.Path objects, + returning the same as str(), to make it more similar to DirEntry. + Library code can now write getattr(p, 'path', p) to get the path as + a string from a Path, a DirEntry, or a plain string. This is + essentially a small one-off protocol. + - Issue #26012: Don't traverse into symlinks for ** pattern in pathlib.Path.[r]glob().