Reading List
Removing the Python GIL from Michael Tsai RSS feed.
Removing the Python GIL
Jonathan Corbet (2021, Serdar Yegulalp, Hacker News): Concerns over the performance of programs written in Python are often overstated — for some use cases, at least. But there is no getting around the problem imposed by the infamous global interpreter lock (GIL), which severely limits the concurrency of multi-threaded Python code. Various efforts to remove […]