--- 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.