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

Method request_step

_pydevd_bundle/pydevd_api.py:253–264  ·  view source on GitHub ↗
(self, py_db, thread_id, step_cmd_id)

Source from the content-addressed store, hash-verified

251 )
252
253 def request_step(self, py_db, thread_id, step_cmd_id):
254 t = pydevd_find_thread_by_id(thread_id)
255 if t:
256 py_db.post_method_as_internal_command(
257 thread_id,
258 internal_step_in_thread,
259 thread_id,
260 step_cmd_id,
261 set_additional_thread_info=set_additional_thread_info,
262 )
263 elif thread_id.startswith("__frame__:"):
264 sys.stderr.write("Can't make tasklet step command: %s\n" % (thread_id,))
265
266 def request_smart_step_into(self, py_db, seq, thread_id, offset, child_offset):
267 t = pydevd_find_thread_by_id(thread_id)

Callers 4

_cmd_stepMethod · 0.80
on_next_requestMethod · 0.80
on_stepin_requestMethod · 0.80
on_stepout_requestMethod · 0.80

Calls 3

pydevd_find_thread_by_idFunction · 0.90
writeMethod · 0.45

Tested by

no test coverage detected