diff --git a/Doc/whatsnew/3.14.rst b/Doc/whatsnew/3.14.rst index 5c0f2829809e3e..44c04915fb2bfe 100644 --- a/Doc/whatsnew/3.14.rst +++ b/Doc/whatsnew/3.14.rst @@ -1076,6 +1076,16 @@ zipinfo Optimizations ============= +* The import time for several standard library modules has been improved, + including :mod:`ast`, :mod:`asyncio`, :mod:`base64`, :mod:`cmd`, :mod:`csv`, + :mod:`gettext`, :mod:`importlib.util`, :mod:`locale`, :mod:`mimetypes`, + :mod:`optparse`, :mod:`pickle`, :mod:`pprint`, :mod:`pstats`, :mod:`socket`, + :mod:`subprocess`, :mod:`threading`, :mod:`tomllib`, and :mod:`zipfile`. + + (Contributed by Adam Turner, Bénédikt Tran, Chris Markiewicz, Eli Schwartz, + Hugo van Kemenade, Jelle Zijlstra, and others in :gh:`118761`.) + + asyncio -------