(self, frame, exc_stuff)
| 876 | def user_return(self, frame, retval): |
| 877 | print('+++ return', retval) |
| 878 | def user_exception(self, frame, exc_stuff): |
| 879 | print('+++ exception', exc_stuff) |
| 880 | self.set_continue() |
| 881 | |
| 882 | def foo(n): |
| 883 | print('foo(', n, ')') |
nothing calls this directly
no test coverage detected