summaryrefslogtreecommitdiffstats
path: root/Lib/pathlib/_local.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/pathlib/_local.py')
-rw-r--r--Lib/pathlib/_local.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/pathlib/_local.py b/Lib/pathlib/_local.py
index 4484d95..c5721a6 100644
--- a/Lib/pathlib/_local.py
+++ b/Lib/pathlib/_local.py
@@ -437,6 +437,11 @@ class PurePath(PurePathBase):
parts.append('')
return parts
+ def as_posix(self):
+ """Return the string representation of the path with forward (/)
+ slashes."""
+ return str(self).replace(self.parser.sep, '/')
+
@property
def _raw_path(self):
paths = self._raw_paths