diff options
author | wim glenn <jump@wimglenn.com> | 2024-05-04 13:46:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-04 13:46:32 (GMT) |
commit | d5e6c7cb667465125ff7fe2c643ccb2abb40fcd0 (patch) | |
tree | 0a5cb6e1f316a87bd4f18caca018040440c98db0 /Lib/importlib | |
parent | b034f14a4b6e9197d3926046721b8b4b4b4f5b3d (diff) | |
download | cpython-d5e6c7cb667465125ff7fe2c643ccb2abb40fcd0.zip cpython-d5e6c7cb667465125ff7fe2c643ccb2abb40fcd0.tar.gz cpython-d5e6c7cb667465125ff7fe2c643ccb2abb40fcd0.tar.bz2 |
fix comment typo in importlib (#118567)
Diffstat (limited to 'Lib/importlib')
-rw-r--r-- | Lib/importlib/_bootstrap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py index 6d6292f..de5651f 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. |