From: Tim Peters Date: Sun, 8 Apr 2001 00:43:13 +0000 (+0000) Subject: Remove useless imports, as reported by PyChecker. X-Git-Tag: v2.1c1~164 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cfc21fcf48d97149541d1a5cc8d4ac2e550780fe;p=thirdparty%2FPython%2Fcpython.git Remove useless imports, as reported by PyChecker. --- diff --git a/Lib/codeop.py b/Lib/codeop.py index 3865ec628993..3335f098d402 100644 --- a/Lib/codeop.py +++ b/Lib/codeop.py @@ -1,8 +1,5 @@ """Utility to compile possibly incomplete Python source code.""" -import sys -import traceback - __all__ = ["compile_command"] def compile_command(source, filename="", symbol="single"):