diff options
author | Binbin <binloveplay1314@qq.com> | 2021-06-13 10:47:44 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-12 22:47:44 -0400 |
commit | 17b16e13bb444001534ed6fccb459084596c8bcf (patch) | |
tree | 569101fcca308843dd1ff731dbd74682d7700f6f /Lib/importlib/_bootstrap_external.py | |
parent | 736ed6f7a9f465ba728198e8bca81e5fbe71bc37 (diff) | |
download | cpython-git-17b16e13bb444001534ed6fccb459084596c8bcf.tar.gz |
Fix typos in multiple files (GH-26689)
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Diffstat (limited to 'Lib/importlib/_bootstrap_external.py')
-rw-r--r-- | Lib/importlib/_bootstrap_external.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/importlib/_bootstrap_external.py b/Lib/importlib/_bootstrap_external.py index 009b45f00d..3cbbb80219 100644 --- a/Lib/importlib/_bootstrap_external.py +++ b/Lib/importlib/_bootstrap_external.py @@ -1178,7 +1178,7 @@ class ExtensionFileLoader(FileLoader, _LoaderBasics): return hash(self.name) ^ hash(self.path) def create_module(self, spec): - """Create an unitialized extension module""" + """Create an uninitialized extension module""" module = _bootstrap._call_with_frames_removed( _imp.create_dynamic, spec) _bootstrap._verbose_message('extension module {!r} loaded from {!r}', |