1
0
mirror of https://github.com/mnaberez/py65.git synced 2024-06-26 20:29:27 +00:00

Removing unused imports

This commit is contained in:
Sam Colwell 2019-01-12 12:58:39 -05:00
parent 1e1791652e
commit d38831db1f
2 changed files with 0 additions and 5 deletions

View File

@ -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.")

View File

@ -36,10 +36,7 @@ if sys.platform[:3] == "win":
return ''
else:
import select
import os
import termios
import fcntl
oldattr = None