I\'m getting an error output when I call the C-API\'s Py_Finalize() from a different C-thread than I made a python call on.
The error I\'m seeing is:
Exc
Try by adding
Py_DECREF(PyImport_ImportModule("threading"));
after
PyEval_InitThreads();