(self, frame, return_value)
| 220 | self.next_set_method() |
| 221 | |
| 222 | def user_return(self, frame, return_value): |
| 223 | self.process_event('return', frame, return_value) |
| 224 | self.next_set_method() |
| 225 | |
| 226 | def user_exception(self, frame, exc_info): |
| 227 | self.exc_info = exc_info |
nothing calls this directly
no test coverage detected