summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/zipimport.rst3
-rw-r--r--Doc/whatsnew/3.13.rst6
2 files changed, 9 insertions, 0 deletions
diff --git a/Doc/library/zipimport.rst b/Doc/library/zipimport.rst
index 47c81f0..7a8c837 100644
--- a/Doc/library/zipimport.rst
+++ b/Doc/library/zipimport.rst
@@ -30,6 +30,9 @@ Any files may be present in the ZIP archive, but importers are only invoked for
corresponding :file:`.pyc` file, meaning that if a ZIP archive
doesn't contain :file:`.pyc` files, importing may be rather slow.
+.. versionchanged:: 3.13
+ ZIP64 is supported
+
.. versionchanged:: 3.8
Previously, ZIP archives with an archive comment were not supported.
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst
index e6234bf..5a5c506 100644
--- a/Doc/whatsnew/3.13.rst
+++ b/Doc/whatsnew/3.13.rst
@@ -700,6 +700,12 @@ xml.etree.ElementTree
:func:`~xml.etree.ElementTree.iterparse` for explicit cleaning up.
(Contributed by Serhiy Storchaka in :gh:`69893`.)
+zipimport
+---------
+
+* Gains support for ZIP64 format files. Everybody loves huge code right?
+ (Contributed by Tim Hatch in :gh:`94146`.)
+
Optimizations
=============