Return the file system path representation of the object.
(self)
| 1075 | |
| 1076 | @abc.abstractmethod |
| 1077 | def __fspath__(self): |
| 1078 | """Return the file system path representation of the object.""" |
| 1079 | raise NotImplementedError |
| 1080 | |
| 1081 | @classmethod |
| 1082 | def __subclasshook__(cls, subclass): |
no outgoing calls