I'm trying to embed a python extension framework into my C program using the documentation here:
http://docs.python.org/2/extending/embedding.html
In section 5.4 of that documentation, an array of method definitions is passed to the python library as an interface back to the calling program. Can i use swig to generate that array of method definitions?
When i build a module with swig, it does generate a static array called "SwigMethods". is there a way to have swig generate that as a global constant array instead?
Edit:
Is this the wrong approach? should i just have my python plugins include the module swig generates? will that module then run in the same address space as the C program?