Patch #2167 from calvin: Remove unused imports

This commit is contained in:
Christian Heimes 2008-02-23 17:40:11 +00:00
parent 19aff0c90a
commit c5f05e45cf
203 changed files with 77 additions and 243 deletions

View file

@ -52,7 +52,8 @@ class CompilerTest(unittest.TestCase):
compiler.compile(buf, basename, "exec")
except Exception, e:
args = list(e.args)
args[0] += "[in file %s]" % basename
args.append("in file %s]" % basename)
#args[0] += "[in file %s]" % basename
e.args = tuple(args)
raise