(self, py_db, thread_id, step_cmd_id)
| 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) |
no test coverage detected