Get the value of a variable by name.
(self, key, default=None)
| 449 | return new_program |
| 450 | |
| 451 | def get(self, key, default=None): |
| 452 | """Get the value of a variable by name.""" |
| 453 | return self._variables.get(key, default) |
| 454 | |
| 455 | def _stream_run(self, loop, new_program): |
| 456 | """This feels a bit hacky at the moment. TODO: clean this up.""" |
no outgoing calls
no test coverage detected