7
votes
Are locks unnecessary in multi-threaded Python code because of the GIL?
The Global Interpreter Lock prevents threads from accessing the interpreter simultaneously (thus CPython only ever uses one core). However, as I understand it, the threads are still interr …
