Hi Salinea,
You can attach the Visual Studio debugger to any running process, including
Python. That way you can debug Python code from your Python IDE, and
connect VS to debug your C++ at the same time.
Best,
Sybren
On 25 January 2013 11:57, salinea wrote:
> Recently, I build a hybrid system
Recently, I build a hybrid system with C++ and python.
First,I encapsulate a class(I can't guarantee the robustness of this
class ) with boost.python which can implement some functions that can not be
implemented by C++, I get a .pyd File in result.
Second,I embed a python interpreter in c