diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2015-05-06 04:01:52 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2015-05-06 04:01:52 (GMT) |
commit | 076dbd05600337057723b831bfad6f6cb1873100 (patch) | |
tree | 5d2e040ea885c29ddc8343c79b7ff0a47fb9bc21 /Lib/test/test_compile.py | |
parent | c4c59050c898afad23279edc89daf6c677ecdbf4 (diff) | |
download | cpython-076dbd05600337057723b831bfad6f6cb1873100.zip cpython-076dbd05600337057723b831bfad6f6cb1873100.tar.gz cpython-076dbd05600337057723b831bfad6f6cb1873100.tar.bz2 |
Fix remaining tests and remove an unused import.
Diffstat (limited to 'Lib/test/test_compile.py')
-rw-r--r-- | Lib/test/test_compile.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_compile.py b/Lib/test/test_compile.py index 41a92ff..98a4df8 100644 --- a/Lib/test/test_compile.py +++ b/Lib/test/test_compile.py @@ -5,7 +5,8 @@ import sys import _ast import tempfile import types -from test import support, script_helper +from test import support +from test.support import script_helper class TestSpecifics(unittest.TestCase): |