(self, part)
| 1210 | self._accessor = _normal_accessor |
| 1211 | |
| 1212 | def _make_child_relpath(self, part): |
| 1213 | # This is an optimization used for dir walking. `part` must be |
| 1214 | # a single part relative to this path. |
| 1215 | parts = self._parts + [part] |
| 1216 | return self._from_parsed_parts(self._drv, self._root, parts) |
| 1217 | |
| 1218 | def __enter__(self): |
| 1219 | if self._closed: |
no test coverage detected