File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -492,8 +492,8 @@ Best Practices for sub-interpreter safety
492492 So you must still consider the thread safety of your C++ code. Remember, in Python 3.12
493493 sub-interpreters must be destroyed on the same thread that they were created on.
494494
495- - When using sub-interpreters in free-threaded python builds, note that creating and destroying
496- sub-interpreters may initiate a "stop-the-world". Be sure to detach long-running C++ threads
495+ - When using sub-interpreters in free-threaded python builds, note that creating and destroying
496+ sub-interpreters may initiate a "stop-the-world". Be sure to detach long-running C++ threads
497497 from Python thread state (similar to releasing the GIL) to avoid deadlocks.
498498
499499- Familiarize yourself with :ref: `misc_concurrency `.
You can’t perform that action at this time.
0 commit comments