Cython relative import error, even when doing absolute import
问题 I'm having trouble in Cython (with Python 3.5) with importing between modules in a single package. The error I'm getting is SystemError: Parent module '' not loaded, cannot perform relative import , even when I'm apparently doing absolute imports. Below is a simple test setup I'm using. This works fine using a pure-Python version of the below ( .py rather than .pyx and no compilation), but not compiled through Cython. Note I'm not actually using any Cython language features in the below