diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2013-07-28 12:11:50 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2013-07-28 12:11:50 (GMT) |
commit | 5517596c0428ee3620c28fd68ba5a0b1627d59b6 (patch) | |
tree | 8d1fa6b14c787305bbf7e8c382fcbbe6f9aaf9ad /Lib/test/script_helper.py | |
parent | 69e3bda310f55816403e4c7fda42ab96d81c31be (diff) | |
download | cpython-5517596c0428ee3620c28fd68ba5a0b1627d59b6.zip cpython-5517596c0428ee3620c28fd68ba5a0b1627d59b6.tar.gz cpython-5517596c0428ee3620c28fd68ba5a0b1627d59b6.tar.bz2 |
Close #15415: Factor out temp dir helpers to test.support
Patch by Chris Jerdonek
Diffstat (limited to 'Lib/test/script_helper.py')
-rw-r--r-- | Lib/test/script_helper.py | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/Lib/test/script_helper.py b/Lib/test/script_helper.py index b09f4bf..ab20164 100644 --- a/Lib/test/script_helper.py +++ b/Lib/test/script_helper.py @@ -13,7 +13,7 @@ import shutil import zipfile from imp import source_from_cache -from test.support import make_legacy_pyc, strip_python_stderr +from test.support import make_legacy_pyc, strip_python_stderr, temp_dir # Executing the interpreter in a subprocess def _assert_python(expected_success, *args, **env_vars): @@ -77,16 +77,6 @@ def kill_python(p): subprocess._cleanup() return data -# Script creation utilities -@contextlib.contextmanager -def temp_dir(): - dirname = tempfile.mkdtemp() - dirname = os.path.realpath(dirname) - try: - yield dirname - finally: - shutil.rmtree(dirname) - def make_script(script_dir, script_basename, source): script_filename = script_basename+os.extsep+'py' script_name = os.path.join(script_dir, script_filename) |