diff --git a/py65/monitor.py b/py65/monitor.py index 1767729..4a2d800 100644 --- a/py65/monitor.py +++ b/py65/monitor.py @@ -135,7 +135,6 @@ class Monitor(cmd.Cmd): result = cmd.Cmd.onecmd(self, line) except KeyboardInterrupt: self._output("Interrupt") - except Exception: (file, fun, line), t, v, tbinfo = compact_traceback() error = 'Error: %s, %s: file: %s line: %s' % (t, v, file, line) @@ -498,7 +497,6 @@ class Monitor(cmd.Cmd): # Switch back to the previous input mode. console.restore_mode(self.stdin) - def help_radix(self): self._output("radix [H|D|O|B]") self._output("Set default radix to hex, decimal, octal, or binary.") diff --git a/py65/utils/console.py b/py65/utils/console.py index 75c199c..59d4b56 100644 --- a/py65/utils/console.py +++ b/py65/utils/console.py @@ -36,10 +36,7 @@ if sys.platform[:3] == "win": return '' else: - import select - import os import termios - import fcntl oldattr = None