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