Return the bytes representation of the path. This is only recommended to use under Unix.
(self)
| 191 | return str(self) |
| 192 | |
| 193 | def __bytes__(self): |
| 194 | """Return the bytes representation of the path. This is only |
| 195 | recommended to use under Unix.""" |
| 196 | return os.fsencode(self) |
| 197 | |
| 198 | @property |
| 199 | def _str_normcase(self): |