diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2012-09-02 09:03:40 -0400 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-09-02 09:03:40 -0400 |
| commit | a420cbfc39ad1b303542a191f2630255a27a4d9d (patch) | |
| tree | e6f3e787ae4d585be963f0eff803ede7d03c8d2e | |
| parent | 1cdc8d899b958f473f31cea04be9c1d8cc767f94 (diff) | |
| download | python-coveragepy-git-a420cbfc39ad1b303542a191f2630255a27a4d9d.tar.gz | |
The zipped modules won't be readable if created under PyPy without an explicit close.
| -rw-r--r-- | igor.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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.""" |
