MCPcopy Create free account
hub / github.com/fabioz/PyDev.Debugger / write_step_next

Method write_step_next

tests_python/test_debugger_json.py:423–426  ·  view source on GitHub ↗
(self, thread_id, wait_for_response=True)

Source from the content-addressed store, hash-verified

421 self.wait_for_response(self.write_request(pydevd_schema.StepInRequest(arguments)))
422
423 def write_step_next(self, thread_id, wait_for_response=True):
424 next_request = self.write_request(pydevd_schema.NextRequest(pydevd_schema.NextArguments(thread_id)))
425 if wait_for_response:
426 self.wait_for_response(next_request)
427
428 def write_step_out(self, thread_id, wait_for_response=True):
429 stepout_request = self.write_request(pydevd_schema.StepOutRequest(pydevd_schema.StepOutArguments(thread_id)))

Calls 2

write_requestMethod · 0.95
wait_for_responseMethod · 0.95

Tested by

no test coverage detected