diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-10 12:01:31 +0200 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-10 12:01:31 +0200 |
commit | bb8013137550418d89437f85630952d03c8fbc4b (patch) | |
tree | 2bf41aa96a01f157e19e6a7e854d77b2e13c1ad9 /Lib | |
parent | 6688bdbe77d58b3a0356bfee3a298e891dc251fc (diff) | |
download | cpython-git-bb8013137550418d89437f85630952d03c8fbc4b.tar.gz |
Import shutil for restore_test_support_TESTFN().
Diffstat (limited to 'Lib')
-rwxr-xr-x | Lib/test/regrtest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index dd47cc36e0..21709f7032 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -158,6 +158,7 @@ import json import os import random import re +import shutil import sys import time import traceback @@ -943,7 +944,6 @@ def runtest_inner(test, verbose, quiet, huntrleaks=False): return FAILED, test_time def cleanup_test_droppings(testname, verbose): - import shutil import stat import gc |