From a420cbfc39ad1b303542a191f2630255a27a4d9d Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 2 Sep 2012 09:03:40 -0400 Subject: The zipped modules won't be readable if created under PyPy without an explicit close. --- igor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/igor.py b/igor.py index 89d4a496..a4fd8ab5 100644 --- a/igor.py +++ b/igor.py @@ -47,6 +47,7 @@ def do_zip_mods(args): """Build the zipmods.zip file.""" zf = zipfile.ZipFile("test/zipmods.zip", "w") zf.write("test/covmodzip1.py", "covmodzip1.py") + zf.close() def do_check_eol(args): """Check files for incorrect newlines and trailing whitespace.""" -- cgit v1.2.1