Planet Interview Question

What is the Python GIL?

Interview Answer

Anonymous

Jul 24, 2017

The Global Interpreter Lock (GIL) in Python is a mechanism that prevents more than one thread from executing at the same point.

1