creating an instance of a C extension type from another C extension type (HOW?)

Martin v. Loewis martin at v.loewis.de
Thu Jun 6 16:34:06 EDT 2002


Maxwell Sayles <sayles at cpsc.ucalgary.ca> writes:

> is there anything wrong with my logic?  code?

Most likely, there is something wrong with your code. Notice that you
cannot normally share symbols between extension modules. Instead, if
you want two modules to share symbols, you need to generate a shared
library that offers the shared symbols, and link both extension
modules against that shared library.

Regards,
Martin



More information about the Python-list mailing list