returns a frame on the thread that has a given frame_id
(self, thread_id, frame_id)
| 2096 | pydev_log.exception() |
| 2097 | |
| 2098 | def find_frame(self, thread_id, frame_id): |
| 2099 | """returns a frame on the thread that has a given frame_id""" |
| 2100 | return self.suspended_frames_manager.find_frame(thread_id, frame_id) |
| 2101 | |
| 2102 | def do_wait_suspend(self, thread, frame, event, arg, exception_type=None): # @UnusedVariable |
| 2103 | """busy waits until the thread state changes to RUN |