(self, context: RecomputeContext)
| 66 | return context |
| 67 | |
| 68 | def pop(self, context: RecomputeContext): |
| 69 | if self._stack[-1] is not context: |
| 70 | raise AssertionError('Nesting violated for RecomputeContext.') |
| 71 | self._stack.pop() |
| 72 | |
| 73 | |
| 74 | _context_stack = _ContextStack() |
no outgoing calls