(self, codeFragment)
| 92 | self._input_error_printed = False |
| 93 | |
| 94 | def do_add_exec(self, codeFragment): |
| 95 | command = Command(self.interpreter, codeFragment) |
| 96 | command.run() |
| 97 | return command.more |
| 98 | |
| 99 | def get_namespace(self): |
| 100 | return self.namespace |