From: wim glenn Date: Tue, 7 May 2024 08:52:48 +0000 (-0500) Subject: Fix typo inaccuracy in _bootstrap_external.py (GH-118619) X-Git-Tag: v3.13.0b1~31 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b7778d59020ed0e97ca459934585d45c3a4a6469;p=thirdparty%2FPython%2Fcpython.git Fix typo inaccuracy in _bootstrap_external.py (GH-118619) --- diff --git a/Lib/importlib/_bootstrap_external.py b/Lib/importlib/_bootstrap_external.py index 30a8cd4475a1..db446776901f 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.