0 votes
in Python by
What Is GIL In Python Language?

1 Answer

0 votes
by

Python supports GIL (the global interpreter lock) which is a mutex used to secure access to Python objects, synchronizing multiple threads from running the Python bytecodes at the same time.

...