(self)
| 20 | self._stack.append(variables) |
| 21 | |
| 22 | def pop(self): |
| 23 | out = self._stack.pop() |
| 24 | |
| 25 | # if we are popping a _prefix variable state we need to update the display |
| 26 | if "@raw_prefix" in self._stack[-1]: |
| 27 | self._executor.program.update_display() |
| 28 | |
| 29 | return out |
| 30 | |
| 31 | def __getitem__(self, key): |
| 32 | return self.get(key) |
no outgoing calls