https://github.com/python/cpython/commit/f85d59ccf8efb916cf516e65d0e550d068fd442e
commit: f85d59ccf8efb916cf516e65d0e550d068fd442e
branch: 3.13
author: Miss Islington (bot) <[email protected]>
committer: zware <[email protected]>
date: 2024-05-15T16:52:48Z
summary:

[3.13] Remove references to private symbols from zipimport module docstring 
(GH-119071)

(cherry picked from commit 7d722b7d3ac78bfa74a5d2f21513ffbf4f85cff2)

Co-authored-by: Thomas Grainger <[email protected]>

files:
M Lib/zipimport.py

diff --git a/Lib/zipimport.py b/Lib/zipimport.py
index 4e41d109865e85..a49a21f0799df2 100644
--- a/Lib/zipimport.py
+++ b/Lib/zipimport.py
@@ -1,11 +1,9 @@
 """zipimport provides support for importing Python modules from Zip archives.
 
-This module exports three objects:
+This module exports two objects:
 - zipimporter: a class; its constructor takes a path to a Zip archive.
 - ZipImportError: exception raised by zipimporter objects. It's a
   subclass of ImportError, so it can be caught as ImportError, too.
-- _zip_directory_cache: a dict, mapping archive paths to zip directory
-  info dicts, as used in zipimporter._files.
 
 It is usually not needed to use the zipimport module explicitly; it is
 used by the builtin import mechanism for sys.path items that are paths

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to