Johannes Wienke wrote: > a few weeks ago I reported a problem[1] about cimport'ing a module that > contains cdef public declarations.
> from ship.icewing.gui cimport plug_observ_data With extension modules that live inside packages, you need to make sure that the compiler knows the fully qualified name of the module. With the current version of Pyrex, you need to do this by naming the source files with the full dotted name, e.g. ship.icewing.gui.pyx and ship.icewing.gui.pxd. But Cython does things differently in this area, and I'm not sure exactly what you need to do. -- Greg _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
