Tagged Questions

0
votes
0answers
63 views

Avoid duplication of msvcr90.dll in application with embedded Python + C extensions?

I'm distributing a Windows application that embeds Python 2.7 (technique: include python27.dll + 'Python27' directory with DLLs and Lib folder, alongside my .exe). I'm also including a custom Python ...
0
votes
1answer
98 views

Possible memory leaks

Could someone check if there is an memory leak? I am confused. PyObject * somefunc(int function_id, int num_params, int * params){ PyObject * params_list=PyList_New(0); for(int i=0; i ...
0
votes
1answer
51 views

How to convert PyFrameObject to PyObject

Maybe I'm missing something, but here is a problem: I'm tracing python code by C extensions and my trace function got PyFrameObject* frame. Now I want to process the frame by Python code(embedded or ...
1
vote
0answers
99 views

Issue with SFCB, the python-binding layer and python providers in ESX 4.0

We are writing SFCB providers in python, Since SFCB talks to only C++ providers we need to have an intermediate layer(cmpi-bindings, a python extension module) which can talk to SFCB and start the ...