(self, code: types.CodeType)
| 18 | return ctx |
| 19 | |
| 20 | def pop_context(self, code: types.CodeType): |
| 21 | ctx = self.get_context(code) |
| 22 | self.code_context._remove_id(id(code)) |
| 23 | return ctx |
| 24 | |
| 25 | def clear(self): |
| 26 | self.code_context.clear() |
nothing calls this directly
no test coverage detected