WIP: don't acquire GIL in gaudirun.py
While developing monitoring code for LHCb, I tried to use threads in the embedded python interpreter, which blocked on acquiring the GIL. The GIL is currently acquired by gaudirun.py though the use of PyDLL (but not when using python directly).
This MR proposes to not acquire the GIL, and calls to the Python API have therefore been protected.
Is the PythonScriptingSvc
still in use?