forked from python/cpython
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0f39f69
commit 289d050
Showing
1 changed file
with
6 additions
and
0 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
Misc/NEWS.d/next/Core and Builtins/2023-05-05-12-14-47.gh-issue-99113.-RAdnv.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
The GIL is now (optionally) per-interpreter. This is the fundamental change | ||
for PEP 684. This is all made possible by virtue of the isolated state of | ||
each interpreter in the process. The behavior of the main interpreter | ||
remains unchanged. Likewise, interpreters created using | ||
``Py_NewInterpreter()`` are not affected. To get an interpreter with its | ||
own GIL, call ``Py_NewInterpreterFromConfig()``. |