diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2015-05-06 07:01:52 +0300 |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2015-05-06 07:01:52 +0300 |
commit | 95377bd6b3aa4af1f5028aa6410640523d99b598 (patch) | |
tree | d37e7b01a3fd20247a93a372170a372449c9d8f3 /Lib/test/test_compile.py | |
parent | 42c6403951044c796363b9f37f0dcb5b54329a85 (diff) | |
download | cpython-95377bd6b3aa4af1f5028aa6410640523d99b598.tar.gz |
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 41a92ffe25..98a4df899a 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): |