Skip to content

Commit 94495d0

Browse files
authored
Fix a misspelling of Interpeter -> Interpreter (GH-111040)
1 parent d9246c7 commit 94495d0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Lib/importlib/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ class _incompatible_extension_module_restrictions:
135135
may not be imported in a subinterpreter. That implies modules
136136
that do not implement multi-phase init or that explicitly of out.
137137
138-
Likewise for modules import in a subinterpeter with its own GIL
138+
Likewise for modules import in a subinterpreter with its own GIL
139139
when the extension does not support a per-interpreter GIL. This
140140
implies the module does not have a Py_mod_multiple_interpreters slot
141141
set to Py_MOD_PER_INTERPRETER_GIL_SUPPORTED.

Misc/HISTORY

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16169,7 +16169,7 @@ Core and Builtins
1616916169
codec subsystem, for example UTF-8 is turned into utf-8.
1617016170

1617116171
- Issue #4200: Changed the atexit module to store its state in its
16172-
PyModuleDef atexitmodule. This fixes a bug with multiple subinterpeters.
16172+
PyModuleDef atexitmodule. This fixes a bug with multiple subinterpreters.
1617316173

1617416174
- Issue #4237: io.FileIO() was raising invalid warnings caused by
1617516175
insufficient initialization of PyFileIOObject struct members.

0 commit comments

Comments
 (0)