eric6/DebugClients/Python/DebugClientBase.py

changeset 7897
9acc015ea443
parent 7895
554fdb07c856
child 7901
6ff7ccf0cb50
diff -r 75ce42b1df23 -r 9acc015ea443 eric6/DebugClients/Python/DebugClientBase.py
--- a/eric6/DebugClients/Python/DebugClientBase.py	Fri Dec 18 17:01:10 2020 +0100
+++ b/eric6/DebugClients/Python/DebugClientBase.py	Sat Dec 19 14:41:43 2020 +0100
@@ -684,6 +684,11 @@
             self.currentThreadExec.go(params["special"])
             self.eventExit = True
         
+        elif method == "RequestContinueUntil":
+            newLine = params["newLine"]
+            self.currentThreadExec.set_until(lineno=newLine)
+            self.eventExit = True
+        
         elif method == "RawInput":
             # If we are handling raw mode input then break out of the current
             # event loop.

eric ide

mercurial