diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2014-09-01 09:33:12 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2014-09-01 09:33:12 (GMT) |
commit | a42ad6bf84ff306e1a52c7c77401920c72eeaeb0 (patch) | |
tree | 533c3e3677d37aa511f157cec392864befb21e07 /Lib/test | |
parent | a7614d08bf173ef6f6f37d3bc825fc6006ddebb8 (diff) | |
download | cpython-a42ad6bf84ff306e1a52c7c77401920c72eeaeb0.zip cpython-a42ad6bf84ff306e1a52c7c77401920c72eeaeb0.tar.gz cpython-a42ad6bf84ff306e1a52c7c77401920c72eeaeb0.tar.bz2 |
Remove unused imports.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_py_compile.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_py_compile.py b/Lib/test/test_py_compile.py index 0a7e2f8..138f173 100644 --- a/Lib/test/test_py_compile.py +++ b/Lib/test/test_py_compile.py @@ -3,11 +3,11 @@ import os import py_compile import shutil import stat -import sys import tempfile import unittest -from test import support, script_helper +from test import support + class PyCompileTests(unittest.TestCase): |