]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix a misspelling of Interpeter -> Interpreter (GH-111040)
authorNikita Sobolev <mail@sobolevn.me>
Wed, 18 Oct 2023 22:09:45 +0000 (01:09 +0300)
committerGitHub <noreply@github.com>
Wed, 18 Oct 2023 22:09:45 +0000 (15:09 -0700)
Lib/importlib/util.py
Misc/HISTORY

index f4d6e82331516f93dda069900162dab6a370da14..3ad71d31c2f438473d83a65e036f71a2697118dd 100644 (file)
@@ -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.
index e66b695f21c9778bf79e95558543f93a2ce3e183..b66413277259dc2e5e807ed6893ad834812f3d94 100644 (file)
@@ -16169,7 +16169,7 @@ Core and Builtins
   codec subsystem, for example UTF-8 is turned into utf-8.
 
 - Issue #4200: Changed the atexit module to store its state in its
-  PyModuleDef atexitmodule. This fixes a bug with multiple subinterpeters.
+  PyModuleDef atexitmodule. This fixes a bug with multiple subinterpreters.
 
 - Issue #4237: io.FileIO() was raising invalid warnings caused by
   insufficient initialization of PyFileIOObject struct members.