Commit f93390a6 authored by Georg Brandl's avatar Georg Brandl

Remove unused imports.

parent 9e7dbc8a
...@@ -73,11 +73,9 @@ import bdb ...@@ -73,11 +73,9 @@ import bdb
import dis import dis
import os import os
import re import re
import code
import pprint import pprint
import traceback import traceback
import inspect import inspect
import types
class Restart(Exception): class Restart(Exception):
...@@ -528,7 +526,7 @@ class Pdb(bdb.Bdb, cmd.Cmd): ...@@ -528,7 +526,7 @@ class Pdb(bdb.Bdb, cmd.Cmd):
arg = arg[colon+1:].lstrip() arg = arg[colon+1:].lstrip()
try: try:
lineno = int(arg) lineno = int(arg)
except ValueError as msg: except ValueError:
self.error('Bad lineno: %s' % arg) self.error('Bad lineno: %s' % arg)
return return
else: else:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment