commit | cfc21fcf48d97149541d1a5cc8d4ac2e550780fe | [log] [tgz] |
---|---|---|
author | Tim Peters <tim.peters@gmail.com> | Sun Apr 08 00:43:13 2001 +0000 |
committer | Tim Peters <tim.peters@gmail.com> | Sun Apr 08 00:43:13 2001 +0000 |
tree | 8c4dca4a65e63e40e6df5b82a3f5665d3363357f | |
parent | 3664111fb139546ca4d6a6060c52c8672f3c5765 [diff] |
Remove useless imports, as reported by PyChecker.
diff --git a/Lib/codeop.py b/Lib/codeop.py index 3865ec6..3335f09 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="<input>", symbol="single"):