Return the string representation of the path with forward (/) slashes.
(self)
| 325 | return parts |
| 326 | |
| 327 | def as_posix(self): |
| 328 | """Return the string representation of the path with forward (/) |
| 329 | slashes.""" |
| 330 | return str(self).replace(self.parser.sep, '/') |
| 331 | |
| 332 | @property |
| 333 | def _raw_path(self): |