1
2cdef extern from "Python.h":
3
4    void PyEval_InitThreads()
5        # Initialize and acquire the global interpreter lock.
6
7    int PyEval_ThreadsInitialized()
8        # Returns a non-zero value if PyEval_InitThreads() has been called.
9