(self, frame, exc_info)
| 224 | self.next_set_method() |
| 225 | |
| 226 | def user_exception(self, frame, exc_info): |
| 227 | self.exc_info = exc_info |
| 228 | self.process_event('exception', frame) |
| 229 | self.next_set_method() |
| 230 | |
| 231 | def user_opcode(self, frame): |
| 232 | self.process_event('opcode', frame) |
nothing calls this directly
no test coverage detected