diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-04-08 00:43:13 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-04-08 00:43:13 (GMT) |
commit | cfc21fcf48d97149541d1a5cc8d4ac2e550780fe (patch) | |
tree | 8c4dca4a65e63e40e6df5b82a3f5665d3363357f /Lib/codeop.py | |
parent | 3664111fb139546ca4d6a6060c52c8672f3c5765 (diff) | |
download | cpython-cfc21fcf48d97149541d1a5cc8d4ac2e550780fe.zip cpython-cfc21fcf48d97149541d1a5cc8d4ac2e550780fe.tar.gz cpython-cfc21fcf48d97149541d1a5cc8d4ac2e550780fe.tar.bz2 |
Remove useless imports, as reported by PyChecker.
Diffstat (limited to 'Lib/codeop.py')
-rw-r--r-- | Lib/codeop.py | 3 |
1 files changed, 0 insertions, 3 deletions
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"): |