Return the file system path representation of the object.
(self)
| 66 | |
| 67 | @abc.abstractmethod |
| 68 | def __fspath__(self): |
| 69 | """Return the file system path representation of the object.""" |
| 70 | raise NotImplementedError |
| 71 | |
| 72 | @classmethod |
| 73 | def __subclasshook__(cls, subclass): |