Evaluate an arbitrary python command.
(self, cmd)
| 3816 | return self.do_print(cmd) |
| 3817 | |
| 3818 | def do_print(self, cmd): |
| 3819 | """ |
| 3820 | Evaluate an arbitrary python command. |
| 3821 | """ |
| 3822 | try: |
| 3823 | print(self.EvalExpression(cmd)) |
| 3824 | except: |
| 3825 | pass |
| 3826 | |
| 3827 | def do_da(self, address): |
| 3828 | """ see display_ascii""" |
no test coverage detected