I have followed the official Python documentation about embedding & extending the Python runtime. While I have managed to get that to work, I could not figure out how to debug both the c++ and the Python code together.
Visual Studio provides an option for mixed mode debugging, where you are able to step through code and jump from a c++ breakpoint to a Python breakpoint. I have tried to follow the official microsoft docs about this and I got it to work, but only for c/c++ extensions. When the interpreter is embedded, I could not get it to work, nor find any resources on how to get it to work.
Is it possible to embed the interpreter and still have the ability to debug Python and c++ code together in Visual Studio?