Extension of the path (including the '.').
(self)
| 356 | |
| 357 | @property |
| 358 | def ext(self): |
| 359 | """Extension of the path (including the '.').""" |
| 360 | return self._getbyspec("ext")[0] |
| 361 | |
| 362 | def read_binary(self): |
| 363 | """Read and return a bytestring from reading the path.""" |
nothing calls this directly
no test coverage detected