Re: [Oorexx-devel] "Per-Interpreter GIL" will land in Python 3.12

2023-05-16 Thread Mark L. Gaubatz via Oorexx-devel
Restated, instead of a common or mutex lock, they are now going to use a per interpreter instance lock. A long time overdue, but the author’s assertion of “truly concurrent Python code” is incorrect and should have been stated otherwise. The real implication is that when multiple Python interpre

[Oorexx-devel] "Per-Interpreter GIL" will land in Python 3.12

2023-05-16 Thread Jean Louis Faucher
I saw this link in the daily TLDR mail of today: https://martinheinz.dev/blog/97 Real Multithreading is Coming to Python - Learn How You Can Use It Now Did not read in details yet, but seems worth to understand how they implemented their "Per-Interpreter GIL”. _