MCPcopy Index your code
hub / github.com/RustPython/RustPython / __rtruediv__

Method __rtruediv__

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

with_segmentsMethod · 0.95

Tested by

no test coverage detected