summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido van Rossum <guido@dropbox.com>2016-01-06 11:03:47 -0800
committerGuido van Rossum <guido@dropbox.com>2016-01-06 11:03:47 -0800
commit483397a235630385c893941fee76379041612ee5 (patch)
treeac0856036c33dbc31ae00ce41f92aad431269ecd
parente630b6818f28b6c4f8845fbaf2d115bbc3f2b733 (diff)
parent1a4afec0d66d8843834250836d1056ed6d687385 (diff)
downloadcpython-git-483397a235630385c893941fee76379041612ee5.tar.gz
Issue #22570: Add 'path' attribute to pathlib.Path objects. (Merge 3.5->3.6)
-rw-r--r--Lib/pathlib.py7
-rw-r--r--Lib/test/test_pathlib.py27
-rw-r--r--Misc/NEWS6
3 files changed, 40 insertions, 0 deletions
diff --git a/Lib/pathlib.py b/Lib/pathlib.py
index d03aededa4..a1e0a822d2 100644
--- a/Lib/pathlib.py
+++ b/Lib/pathlib.py
@@ -690,6 +690,13 @@ class PurePath(object):
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 --git a/Lib/test/test_pathlib.py b/Lib/test/test_pathlib.py
index bf77277e67..bfdafe39d4 100644
--- a/Lib/test/test_pathlib.py
+++ b/Lib/test/test_pathlib.py
@@ -477,6 +477,22 @@ class _BasePurePathTest(object):
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 @@ class PureWindowsPathTest(_BasePurePathTest, unittest.TestCase):
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 --git a/Misc/NEWS b/Misc/NEWS
index 01bce3ec1c..fcf6c97626 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -128,6 +128,12 @@ Core and Builtins
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().