(self, frame, exc_stuff)
| 1180 | def user_return(self, frame, retval): |
| 1181 | print('+++ return', retval) |
| 1182 | def user_exception(self, frame, exc_stuff): |
| 1183 | print('+++ exception', exc_stuff) |
| 1184 | self.set_continue() |
| 1185 | |
| 1186 | def foo(n): |
| 1187 | print('foo(', n, ')') |
nothing calls this directly
no test coverage detected