summaryrefslogtreecommitdiff
path: root/Lib/codeop.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-04-08 00:43:13 +0000
committerTim Peters <tim.peters@gmail.com>2001-04-08 00:43:13 +0000
commitcfc21fcf48d97149541d1a5cc8d4ac2e550780fe (patch)
tree8c4dca4a65e63e40e6df5b82a3f5665d3363357f /Lib/codeop.py
parent3664111fb139546ca4d6a6060c52c8672f3c5765 (diff)
downloadcpython-git-cfc21fcf48d97149541d1a5cc8d4ac2e550780fe.tar.gz
Remove useless imports, as reported by PyChecker.
Diffstat (limited to 'Lib/codeop.py')
-rw-r--r--Lib/codeop.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/codeop.py b/Lib/codeop.py
index 3865ec6289..3335f098d4 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"):