Andrew Collette wrote: > Since I heard Cython (unlike Pyrex) > supports "cimport *", I wanted consolidate the whole thing into > "hdf5.pxd" and simply cimport everything into each module I'm building. > However, this doesn't seem to import typedefs:
The reason Pyrex doesn't support 'cimport *' is because it needs to know at parse time which names are potentially type names. If Cython hasn't done anything about that problem, its support for cimport * may not work properly. > 639 # Compiling multiple sources in one context doesn't > quite > 640 # work properly yet. The latest Pyrex supports multiple compilation properly now, but this may not have made it into Cython yet. -- Greg _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
