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

Method __truediv__

Lib/pathlib/__init__.py:174–178  ·  view source on GitHub ↗
(self, key)

Source from the content-addressed store, hash-verified

172 return self.with_segments(self, *pathsegments)
173
174 def __truediv__(self, key):
175 try:
176 return self.with_segments(self, key)
177 except TypeError:
178 return NotImplemented
179
180 def __rtruediv__(self, key):
181 try:

Callers

nothing calls this directly

Calls 1

with_segmentsMethod · 0.95

Tested by

no test coverage detected