1

I'm not sure if this question has been answered yet, but I couldn't find any answers.

I'm making a stand alone app in C++ that needs to execute python code. So, I'm embedding python and running it ok.

My questions is, how can I use PyDev to debug the python code executed by this stand alone app?

1 Answer 1

3

I think you are referreing to Pydev Remote Debugger. It allow you to create a server in the 'debugee' process, using:

import pydevd; pydevd.settrace()

and then connect to it from pydev.

Also, Winpdb has similar functionality.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.