]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove useless imports, as reported by PyChecker.
authorTim Peters <tim.peters@gmail.com>
Sun, 8 Apr 2001 00:43:13 +0000 (00:43 +0000)
committerTim Peters <tim.peters@gmail.com>
Sun, 8 Apr 2001 00:43:13 +0000 (00:43 +0000)
Lib/codeop.py

index 3865ec6289930061ef06092a8ed5e1c5581bc456..3335f098d4020739b56724ccbcc33046d415ac67 100644 (file)
@@ -1,8 +1,5 @@
 """Utility to compile possibly incomplete Python source code."""
 
-import sys
-import traceback
-
 __all__ = ["compile_command"]
 
 def compile_command(source, filename="<input>", symbol="single"):