Method
copy
(self)
Source from the content-addressed store, hash-verified
| 41 | self._prev_context = None |
| 42 | |
| 43 | def copy(self): |
| 44 | new = Context() |
| 45 | new._data = self._data |
| 46 | return new |
| 47 | |
| 48 | def __getitem__(self, var): |
| 49 | if not isinstance(var, ContextVar): |