Chris Colbert wrote: > What I want to be able to do, is have all of my multiple .pyx and .pxd > files compiled and built into a single .pyd
If you're keeping them as separate modules, you end up with a .pyd for each module, and the setup.py has a separate Extension instance for each module. You can put them in a package with an __init__.py that imports all the names to be made public, so that it looks like a single module to Python. But if you do that, be sure to consult the docs on how to compile .pyx files that are to be part of a package. -- Greg _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
