From: wim glenn Date: Sat, 4 May 2024 13:46:32 +0000 (-0500) Subject: fix comment typo in importlib (#118567) X-Git-Tag: v3.13.0b1~113 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d5e6c7cb667465125ff7fe2c643ccb2abb40fcd0;p=thirdparty%2FPython%2Fcpython.git fix comment typo in importlib (#118567) --- diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py index 6d6292f95592..de5651f0a7fc 100644 --- a/Lib/importlib/_bootstrap.py +++ b/Lib/importlib/_bootstrap.py @@ -1134,7 +1134,7 @@ class FrozenImporter: # part of the importer), instead of here (the finder part). # The loader is the usual place to get the data that will # be loaded into the module. (For example, see _LoaderBasics - # in _bootstra_external.py.) Most importantly, this importer + # in _bootstrap_external.py.) Most importantly, this importer # is simpler if we wait to get the data. # However, getting as much data in the finder as possible # to later load the module is okay, and sometimes important.