MCPcopy Index your code
hub / github.com/python/cpython / _tail

Method _tail

Lib/pathlib/__init__.py:362–367  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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):

Callers

nothing calls this directly

Calls 1

_parse_pathMethod · 0.95

Tested by

no test coverage detected