First time here? Check out the FAQ!

vadim's profile - activity

2020-03-30 15:15:13 -0500 received badge Famous Question (source)
2020-03-26 08:39:24 -0500 marked best answer How to debug with step into statement (F7) in remote host project?

Hi,

I am trying to debug python code using Remote Development features of wingide6.1. I set up my remote project, and I can debug the code using F6 (step over current statement) and F7 (step into the current execution point). But when I use F7, I can stay in the debug mode only if the current execution point is inside the main program. For example, if I debug script a.py and I want to step into (F7) a function f(), where function f() is defined in script a.py, I can step into f() with F7 and step over the lines of f().

But if f() is defined in script b.py, I cannot be in the debug mode and track the steps inside f(). The steps are executed, but I can't see it online, e.g. I am not inside function f(). I stay inside a.py (at f()) and wait until I run over all the steps of f() and step out from f().

In the massages window, I see the following: General: Document Open Failed::Failed to open document 'ssh:[Identifier to my remote host]/b.py'

I need to be able to step into statements (with F7) that are defined in several scripts and classes in my project. How can I do it?

Many Thanks

2020-03-26 08:39:13 -0500 received badge Notable Question (source)
2020-03-25 09:19:35 -0500 received badge Popular Question (source)
2020-03-23 20:19:50 -0500 received badge Student (source)
2020-03-23 20:19:36 -0500 asked a question How to debug with step into statement (F7) in remote host project?

Hot to debug with step into statement (F7) in remote host project? Hi, I am trying to debug python code using Remote De