Method
_init
(self,
# Private non-constructor arguments
template=None,
)
Source from the content-addressed store, hash-verified
| 1200 | return self |
| 1201 | |
| 1202 | def _init(self, |
| 1203 | # Private non-constructor arguments |
| 1204 | template=None, |
| 1205 | ): |
| 1206 | self._closed = False |
| 1207 | if template is not None: |
| 1208 | self._accessor = template._accessor |
| 1209 | else: |
| 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 |
Tested by
no test coverage detected