fix comment typo in importlib (#118567)

This commit is contained in:
wim glenn 2024-05-04 08:46:32 -05:00 committed by GitHub
parent b034f14a4b
commit d5e6c7cb66
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1134,7 +1134,7 @@ class FrozenImporter:
# part of the importer), instead of here (the finder part). # part of the importer), instead of here (the finder part).
# The loader is the usual place to get the data that will # The loader is the usual place to get the data that will
# be loaded into the module. (For example, see _LoaderBasics # 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. # is simpler if we wait to get the data.
# However, getting as much data in the finder as possible # However, getting as much data in the finder as possible
# to later load the module is okay, and sometimes important. # to later load the module is okay, and sometimes important.