summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_zipimport.py
diff options
context:
space:
mode:
authorHai Shi <shihai1992@gmail.com>2020-05-18 22:02:57 (GMT)
committerGitHub <noreply@github.com>2020-05-18 22:02:57 (GMT)
commita3ec3ad9e20e7d9ed148d4cfbd22aebec608b42a (patch)
treebece391e5fb7dfc20ddb2d2e30d63ca5d4662996 /Lib/test/test_zipimport.py
parentced4e5c22756fde3e97327642c159f6699815caa (diff)
downloadcpython-a3ec3ad9e20e7d9ed148d4cfbd22aebec608b42a.zip
cpython-a3ec3ad9e20e7d9ed148d4cfbd22aebec608b42a.tar.gz
cpython-a3ec3ad9e20e7d9ed148d4cfbd22aebec608b42a.tar.bz2
bpo-40275: More lazy imports in test.support (GH-20131)
Make the the following imports lazy in test.support: * bz2 * gzip * lzma * resource * zlib The following test.support decorators now need to be called with parenthesis: * @support.requires_bz2 * @support.requires_gzip * @support.requires_lzma * @support.requires_zlib For example, "@requires_zlib" becomes "@requires_zlib()".
Diffstat (limited to 'Lib/test/test_zipimport.py')
-rw-r--r--Lib/test/test_zipimport.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_zipimport.py b/Lib/test/test_zipimport.py
index 2af8689..5602860 100644
--- a/Lib/test/test_zipimport.py
+++ b/Lib/test/test_zipimport.py
@@ -683,7 +683,7 @@ class UncompressedZipImportTestCase(ImportHooksBaseTestCase):
self.doTest(".py", files, TESTMOD, comment=b"c" * ((1 << 16) - 1))
-@support.requires_zlib
+@support.requires_zlib()
class CompressedZipImportTestCase(UncompressedZipImportTestCase):
compression = ZIP_DEFLATED