bpo-5950: Support reading zips with comments in zipimport (#9548)

* bpo-5950: Support reading zips with comments in zipimport
This commit is contained in:
Zackery Spytz 2018-09-25 13:15:47 -06:00 committed by Barry Warsaw
parent 996859a90d
commit 5a5ce064b3
5 changed files with 1084 additions and 1013 deletions

View file

@ -28,7 +28,8 @@ Any files may be present in the ZIP archive, but only files :file:`.py` and
corresponding :file:`.pyc` file, meaning that if a ZIP archive
doesn't contain :file:`.pyc` files, importing may be rather slow.
ZIP archives with an archive comment are currently not supported.
.. versionchanged:: 3.8
Previously, ZIP archives with an archive comment were not supported.
.. seealso::