summaryrefslogtreecommitdiffstats
path: root/Lib/importlib
diff options
context:
space:
mode:
authorwim glenn <hey@wimglenn.com>2024-05-07 08:52:48 (GMT)
committerGitHub <noreply@github.com>2024-05-07 08:52:48 (GMT)
commitb7778d59020ed0e97ca459934585d45c3a4a6469 (patch)
tree92838d91c31225d81f13d0bfd44dbeb24650e71f /Lib/importlib
parentde1428f8c234a8731ced99cbfe5cd6c5c719e31d (diff)
downloadcpython-b7778d59020ed0e97ca459934585d45c3a4a6469.zip
cpython-b7778d59020ed0e97ca459934585d45c3a4a6469.tar.gz
cpython-b7778d59020ed0e97ca459934585d45c3a4a6469.tar.bz2
Fix typo inaccuracy in _bootstrap_external.py (GH-118619)
Diffstat (limited to 'Lib/importlib')
-rw-r--r--Lib/importlib/_bootstrap_external.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/importlib/_bootstrap_external.py b/Lib/importlib/_bootstrap_external.py
index 30a8cd4..db44677 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.