]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo inaccuracy in _bootstrap_external.py (GH-118619)
authorwim glenn <hey@wimglenn.com>
Tue, 7 May 2024 08:52:48 +0000 (03:52 -0500)
committerGitHub <noreply@github.com>
Tue, 7 May 2024 08:52:48 +0000 (10:52 +0200)
Lib/importlib/_bootstrap_external.py

index 30a8cd4475a104e4f9ae96346fbea654940509b9..db446776901fc383f3e6fcb4e65e7b5aeef7e004 100644 (file)
@@ -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.