diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2023-10-18 22:09:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-18 22:09:45 (GMT) |
commit | 94495d038732d8b31c1f39eca8fd69ee6330933d (patch) | |
tree | d9038c542e599855556b5c6fafab503a6097c079 /Lib/importlib | |
parent | d9246c7b734b8958da03494045208681d95f5b74 (diff) | |
download | cpython-94495d038732d8b31c1f39eca8fd69ee6330933d.zip cpython-94495d038732d8b31c1f39eca8fd69ee6330933d.tar.gz cpython-94495d038732d8b31c1f39eca8fd69ee6330933d.tar.bz2 |
Fix a misspelling of Interpeter -> Interpreter (GH-111040)
Diffstat (limited to 'Lib/importlib')
-rw-r--r-- | Lib/importlib/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/importlib/util.py b/Lib/importlib/util.py index f4d6e82..3ad71d3 100644 --- a/Lib/importlib/util.py +++ b/Lib/importlib/util.py @@ -135,7 +135,7 @@ class _incompatible_extension_module_restrictions: may not be imported in a subinterpreter. That implies modules that do not implement multi-phase init or that explicitly of out. - Likewise for modules import in a subinterpeter with its own GIL + Likewise for modules import in a subinterpreter with its own GIL when the extension does not support a per-interpreter GIL. This implies the module does not have a Py_mod_multiple_interpreters slot set to Py_MOD_PER_INTERPRETER_GIL_SUPPORTED. |