Return the string representation of the path, suitable for passing to system calls.
(self)
| 248 | return self._parts_normcase >= other._parts_normcase |
| 249 | |
| 250 | def __str__(self): |
| 251 | """Return the string representation of the path, suitable for |
| 252 | passing to system calls.""" |
| 253 | try: |
| 254 | return self._str |
| 255 | except AttributeError: |
| 256 | self._str = self._format_parsed_parts(self.drive, self.root, |
| 257 | self._tail) or '.' |
| 258 | return self._str |
| 259 | |
| 260 | __fspath__ = __str__ |
| 261 | __vfspath__ = __str__ |
nothing calls this directly
no test coverage detected