(self)
| 60 | return ContextDict(self, *dicts, **kwargs) |
| 61 | |
| 62 | def pop(self): |
| 63 | if len(self.dicts) == 1: |
| 64 | raise ContextPopException |
| 65 | return self.dicts.pop() |
| 66 | |
| 67 | def __setitem__(self, key, value): |
| 68 | "Set a variable in the current context" |
no outgoing calls
no test coverage detected