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