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

Function internal_step_in_thread

_pydevd_bundle/pydevd_comm.py:714–725  ·  view source on GitHub ↗
(py_db, thread_id, cmd_id, set_additional_thread_info)

Source from the content-addressed store, hash-verified

712
713
714def internal_step_in_thread(py_db, thread_id, cmd_id, set_additional_thread_info):
715 thread_to_step = pydevd_find_thread_by_id(thread_id)
716 if thread_to_step is not None:
717 info = set_additional_thread_info(thread_to_step)
718 info.pydev_original_step_cmd = cmd_id
719 info.pydev_step_cmd = cmd_id
720 info.pydev_step_stop = None
721 info.pydev_state = STATE_RUN
722 info.update_stepping_info()
723
724 if py_db.stepping_resumes_all_threads:
725 resume_threads("*", except_thread=thread_to_step)
726
727
728def internal_smart_step_into(py_db, thread_id, offset, child_offset, set_additional_thread_info):

Callers

nothing calls this directly

Calls 4

pydevd_find_thread_by_idFunction · 0.90
resume_threadsFunction · 0.90
update_stepping_infoMethod · 0.80

Tested by

no test coverage detected