I want to call some c function from python to be able to improve performance of my code. But I cannot find online whether when I call a C function using the ctypes libraries the GIL is released. As a simple example: Is the GIL released during the call to fun.sleep? Answer According to [Python.Docs]: ctypes.CF…