Dag Sverre Seljebotn wrote: > No, you are right :-) cimport pulls in numpy.pxd (from Cython/Includes) > and is "something else" entirely.
But numpy.pxd is declaring things that exist in the numpy module at run time, so they're two aspects of the same thing. Names defined in numpy.pxd go into the compile-time version of the numpy module namespace. Renaming it locally when cimporting makes no difference to that. -- Greg _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
