Return the file system path representation of the object.
(self)
| 1128 | |
| 1129 | @abc.abstractmethod |
| 1130 | def __fspath__(self): |
| 1131 | """Return the file system path representation of the object.""" |
| 1132 | raise NotImplementedError |
| 1133 | |
| 1134 | @classmethod |
| 1135 | def __subclasshook__(cls, subclass): |