Stephane DROUARD wrote: > Could you provide me with a simple example of "extension types (I mean, cdef > ones)" demonstrating the issue of my patch (sorry I'm new in Cython)?
When a module cimports an extension type from another module, code is generated to import the type object at run time. To do this, the Pyrex compiler needs to know where the other module is in the module namespace. If it gets moved somewhere else, the import will fail. -- Greg _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
