(self, py_db, seq, thread_id, frame_id, act_tok, line=-1, column=-1)
| 224 | resume_threads(thread_id) |
| 225 | |
| 226 | def request_completions(self, py_db, seq, thread_id, frame_id, act_tok, line=-1, column=-1): |
| 227 | py_db.post_method_as_internal_command( |
| 228 | thread_id, internal_get_completions, seq, thread_id, frame_id, act_tok, line=line, column=column |
| 229 | ) |
| 230 | |
| 231 | def request_stack(self, py_db, seq, thread_id, fmt=None, timeout=0.5, start_frame=0, levels=0): |
| 232 | # If it's already suspended, get it right away. |
no test coverage detected