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 -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To view this discussion on the web visit https://groups.google.com/d/msg/pyinstaller/-/pIQW5PZf5joJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pyinstaller?hl=en.
