(self)
| 360 | |
| 361 | @property |
| 362 | def _tail(self): |
| 363 | try: |
| 364 | return self._tail_cached |
| 365 | except AttributeError: |
| 366 | self._drv, self._root, self._tail_cached = self._parse_path(self._raw_path) |
| 367 | return self._tail_cached |
| 368 | |
| 369 | @property |
| 370 | def anchor(self): |
nothing calls this directly
no test coverage detected