Hi guys,
I think i got an issue with custom extension that use Python threads.
I've a module bootstrap that contain python code using threads API.
If i do:
$ python
>>> import bootstrap
-> no crash, everything works.
But if i use PyInstaller, i got:
Fatal Python error: PyThreadState_Get: no current thread
Abort trap: 6
After looking at the source/common/launch.c, it seem like the threads support is not initialized:
Py_Initialize(); is not, no PyEval_InitThreads();
Would it be possible to add it as an option somewhere ? By default, the python interpreter is doing it.
Mathieu