diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2010-07-28 16:39:41 +0000 |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2010-07-28 16:39:41 +0000 |
commit | 02ea12b29196ae002e26061eb0afb96db0cf889b (patch) | |
tree | 6ada8bb7e3777cb573814322d1eab627fd1899a2 /Lib/test/script_helper.py | |
parent | 3f8ab965f722b3bda679c9271fb8907e2bbcdc64 (diff) | |
download | cpython-git-02ea12b29196ae002e26061eb0afb96db0cf889b.tar.gz |
Syntax cleanup.
Diffstat (limited to 'Lib/test/script_helper.py')
-rw-r--r-- | Lib/test/script_helper.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/script_helper.py b/Lib/test/script_helper.py index 39874d97ec..28d5e9d13b 100644 --- a/Lib/test/script_helper.py +++ b/Lib/test/script_helper.py @@ -79,7 +79,7 @@ def make_zip_script(zip_dir, zip_basename, script_name, name_in_zip=None): name_in_zip = os.path.basename(script_name) zip_file.write(script_name, name_in_zip) zip_file.close() - #if test.test_support.verbose: + #if test.support.verbose: # zip_file = zipfile.ZipFile(zip_name, 'r') # print 'Contents of %r:' % zip_name # zip_file.printdir() @@ -114,7 +114,7 @@ def make_zip_pkg(zip_dir, zip_basename, pkg_name, script_basename, zip_file.close() for name in unlink: os.unlink(name) - #if test.test_support.verbose: + #if test.support.verbose: # zip_file = zipfile.ZipFile(zip_name, 'r') # print 'Contents of %r:' % zip_name # zip_file.printdir() |