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

Method __rtruediv__

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

Source from the content-addressed store, hash-verified

178 return NotImplemented
179
180 def __rtruediv__(self, key):
181 try:
182 return self.with_segments(key, self)
183 except TypeError:
184 return NotImplemented
185
186 def __reduce__(self):
187 return self.__class__, tuple(self._raw_paths)

Callers

nothing calls this directly

Calls 1

with_segmentsMethod · 0.95

Tested by

no test coverage detected