Another notable thing is using a per-interpreter GIL. The GIL ensures there is only one thread running at any time. Using multiple processors with threads is impossible because only one thread can run at a time. This is a step towards removing that limitation.
October 3, 2023 at 7:18 AM
Another notable thing is using a per-interpreter GIL. The GIL ensures there is only one thread running at any time. Using multiple processors with threads is impossible because only one thread can run at a time. This is a step towards removing that limitation.