https://github.com/python/cpython/commit/b7778d59020ed0e97ca459934585d45c3a4a6469
commit: b7778d59020ed0e97ca459934585d45c3a4a6469
branch: main
author: wim glenn <[email protected]>
committer: encukou <[email protected]>
date: 2024-05-07T10:52:48+02:00
summary:

Fix typo inaccuracy in _bootstrap_external.py (GH-118619)

files:
M Lib/importlib/_bootstrap_external.py

diff --git a/Lib/importlib/_bootstrap_external.py 
b/Lib/importlib/_bootstrap_external.py
index 30a8cd4475a104..db446776901fc3 100644
--- a/Lib/importlib/_bootstrap_external.py
+++ b/Lib/importlib/_bootstrap_external.py
@@ -1464,7 +1464,7 @@ class PathFinder:
     @staticmethod
     def invalidate_caches():
         """Call the invalidate_caches() method on all path entry finders
-        stored in sys.path_importer_caches (where implemented)."""
+        stored in sys.path_importer_cache (where implemented)."""
         for name, finder in list(sys.path_importer_cache.items()):
             # Drop entry if finder name is a relative path. The current
             # working directory may have changed.

_______________________________________________
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