(self, frame, exc_stuff)
| 1189 | def user_return(self, frame, retval): |
| 1190 | print('+++ return', retval) |
| 1191 | def user_exception(self, frame, exc_stuff): |
| 1192 | print('+++ exception', exc_stuff) |
| 1193 | self.set_continue() |
| 1194 | |
| 1195 | def foo(n): |
| 1196 | print('foo(', n, ')') |
nothing calls this directly
no test coverage detected