I use PyDev for python, and I have 2 files - one obvious python script, second - with extension .so. In my python script I want to use functions from .so file, so have line:
import test.so
But in PyDev editor this line is marked as error:
Unresolved import: test.so
Unresolved import: test
Could someone explain me why and how to fix this?