(self, key)
| 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) |
nothing calls this directly
no test coverage detected