I have a Python wrapper (to a C lib) generated by Swig.
Have unittest run happy within PyDev.
Project structure follow PyBuilder suggested setup:
|-src |-main |-python |-A.py |-_A.so |-unittest |-python |-A_tests.py
when try run pyb, got following error:
Fatal Python error: PyThreadState_Get: no current thread Abort trap: 6
NOTE: If I change A to a pure Python module, everything works.
Must be something (step) missing related to load that .so file.
Sorry for a newbie question like this. Any help will be greatly appreciated.