[EMAIL PROTECTED] wrote: > I have C Extension classes distributed across several modules with > non-trivial interdependancies. I guess you are saying I should have > these in backend libraries and then put the module specific functions > in the module itself. It's going to be tricky because I am using > distutils and pyrex to do all this. Maybe Greg (Ewing) has some other > ideas.
Alternatively, if you are always shipping the entire set: make them all a single extension module. For backwards compatibility, provide Python modules with the "old" module names, which export the symbols that used to be in that module. Regards, Martin -- http://mail.python.org/mailman/listinfo/python-list