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