Acquiring the global interpreter lock from python

1k views Asked by At

Is it possible to acquire the global interpreter lock from python code? Or is that purely implemented in the C side?

1

There are 1 answers

3
Marek Sapota On BEST ANSWER

If your code executes then you have the GIL, no need to acquire it manually.