(py_db, thread_id, cmd_id, set_additional_thread_info)
| 712 | |
| 713 | |
| 714 | def 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 | |
| 728 | def internal_smart_step_into(py_db, thread_id, offset, child_offset, set_additional_thread_info): |
nothing calls this directly
no test coverage detected