I want to debug python and c++ together. I know gdb can debug c++ code and pdb can debug python code. But how can I debug them together?
For example, I have a python script which calls c++ code. And I want to see the local variables of python script and c++. Is it any way to do that?
Besides, I know how to use gdb to run python to debug c++ code. Don't tell me how to do this... I want to debug them together.