• The Global Interpreter Lock (GIL) and its Effects on Python Multithreading (tenthousandmeters.com)
    python
    One of the most debated aspects of the standard python interpreter is the GIL, which makes it impossible for more than one thread to be actively running at a time. This is a dive into how and why.