(self)
| 122 | ]) |
| 123 | |
| 124 | def test_caught_exception(self): |
| 125 | def f(p): |
| 126 | try: 1/0 |
| 127 | except ZeroDivisionError: pass |
| 128 | f_ident = ident(f) |
| 129 | self.check_events(f, [(1, 'call', f_ident), |
| 130 | (1, 'return', f_ident), |
| 131 | ]) |
| 132 | |
| 133 | def test_caught_nested_exception(self): |
| 134 | def f(p): |
nothing calls this directly
no test coverage detected