Closed
Description
there's an issue with debugging python code that utilizes multithreading.
i set a breakpoint, start debugging, execution pauses as expected, but when i press 'Step Over' (F10) debugger does not go to the next expression (line) in the current thread, but jumps to some random locations in other running threads, and i have to 'Step Over' again and again until i return to my current thread.
'Step Over' feature must be limited the current (paused) thread.
the same issue was reported for Visual Studio a couple of years ago https://developercommunity.visualstudio.com/t/make-the-debugger-stick-to-the-current-thread-inst/351390