23
PEP 703 is going to be accepted, are you ready for noGIL?
(discuss.python.org)
News and discussions about the programming language Python
The GIL is a thread lock. It prevents threads from accessing the same memory space, eliminating race conditions and more importantly, keeping the reference counters correct so that the python garbage collector can correctly free memory (avoiding leaks)