Lisandro Dalcin wrote: > On Fri, Oct 16, 2009 at 4:29 AM, Sturla Molden <[email protected]> wrote: >> Den 15. okt. 2009 kl. 19.02 skrev Dag Sverre Seljebotn >> <[email protected] >> >: >> >>> Note that even with pure Python, you can't really split a module >>> across >>> multiple .py files... >>> >> But you can import a zip file as a package or import modules from a >> zip file. >> > > Does zipimport support C extension modules? I think not (though IIRC > setuptool's has support for this)
Only so far as it extracts the .so file to a hidden subdirectory of your home directory. So I'd rather call the support non-existent. The problem is that the dynamic loader needs to access the shared library, and those rarely support ZIP files. Stefan _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
