(self)
| 185 | ]) |
| 186 | |
| 187 | def test_raise_twice(self): |
| 188 | def f(p): |
| 189 | try: 1/0 |
| 190 | except ZeroDivisionError: 1/0 |
| 191 | f_ident = ident(f) |
| 192 | self.check_events(f, [(1, 'call', f_ident), |
| 193 | (1, 'return', f_ident), |
| 194 | ]) |
| 195 | |
| 196 | def test_raise_reraise(self): |
| 197 | def f(p): |
nothing calls this directly
no test coverage detected