Re: [C++-sig] How to debug pyd File in Visual Studio???

2013-01-25 Thread Sybren A . Stüvel
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

[C++-sig] How to debug pyd File in Visual Studio???

2013-01-25 Thread salinea
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