(self, py_db, request, thread_id, thread, max_frames)
| 239 | py_db.post_internal_command(internal_get_thread_stack, "*") |
| 240 | |
| 241 | def request_exception_info_json(self, py_db, request, thread_id, thread, max_frames): |
| 242 | py_db.post_method_as_internal_command( |
| 243 | thread_id, |
| 244 | internal_get_exception_details_json, |
| 245 | request, |
| 246 | thread_id, |
| 247 | thread, |
| 248 | max_frames, |
| 249 | set_additional_thread_info=set_additional_thread_info, |
| 250 | iter_visible_frames_info=py_db.cmd_factory._iter_visible_frames_info, |
| 251 | ) |
| 252 | |
| 253 | def request_step(self, py_db, thread_id, step_cmd_id): |
| 254 | t = pydevd_find_thread_by_id(thread_id) |
no test coverage detected