0 votes
in Python by
What is GIL?

1 Answer

0 votes
by

GIL or the Global Interpreter Lock is a mutex, used to limit access to Python objects. It synchronizes threads and prevents them from running at the same time.

Related questions

+1 vote
asked Jan 30, 2022 in Python by sharadyadav1986
+1 vote
asked Jan 30, 2022 in Python by sharadyadav1986
...