Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.