The root of the path, if any.
(self)
| 351 | |
| 352 | @property |
| 353 | def root(self): |
| 354 | """The root of the path, if any.""" |
| 355 | try: |
| 356 | return self._root |
| 357 | except AttributeError: |
| 358 | self._drv, self._root, self._tail_cached = self._parse_path(self._raw_path) |
| 359 | return self._root |
| 360 | |
| 361 | @property |
| 362 | def _tail(self): |
nothing calls this directly
no test coverage detected