Hi,
I have an application that has an embedded interpreter. This application
loads many
DLL's and passes a PyObject * to each DLL that was gotten from the
following call:
PyObject * pmod = PyImport_AddModule("__main__") ;
Later, in one of the many DLL's that interact with the embedded
inte
Hi,
I would like to pass a dictionary from my Python code to my Python
extension, extract
various values from the dictionary (from within the extension) , modify the
values for the
relevant keys and return the modified dictionary to Python.
Can someone point me to an example of what the C code
Hi,
I have an application that has an embedded interpreter. This application
loads many
DLL's and passes a PyObject * to each DLL that was gotten from the
following call:
PyObject * pmod = PyImport_AddModule("__main__") ;
Later, in one of the many DLL's that interact with the embedded
inte
I'm hoping someone can give me some advice, or point me in a helpful
direction.
I've embedded python 2.4 within an application that needs to connect with
MS Excel.
I've written the python code to communicate with Excel and tested it from
the python
command line interpreter. It works great! How