Tagged Questions
3
votes
1answer
47 views
python c api to create a python module
I'm writing a python module in C, and looking for a way to write a module inside of a module.
PyMODINIT_FUNC
initA(void)
{
PyObject* pMod, pSubMod;
pMod = Py_InitModule3("A", A_Methods, A_Doc);
...
3
votes
1answer
157 views
Is there a fini routine for a python module written in C?
I have a python module written in C, and I would like to add a function that is called when the module is unloaded. I obviously have an initfoo function to initialize the module -- is there a way to ...
1
vote
5answers
218 views
Extending python with C module
So I have a C program to interface with an i2c device. I need to interface to that device from python. I'm just wondering if it's worth porting the program into a python module or if the amount of ...
0
votes
1answer
173 views
Compiling Python extensions with VC2010
I have some code written in C++0x that I want to expose to Python 2.7 as an extension.
Since it uses several C++0x features I'd prefer not to rewrite it in C++03, so I'm forced to use VC2010. ...