(self)
| 326 | self.check_events(caught) |
| 327 | |
| 328 | def test_nested_call(self): |
| 329 | self.check_events(nested_call) |
| 330 | |
| 331 | UP_EVENTS = (E.C_RETURN, E.C_RAISE, E.PY_RETURN, E.PY_UNWIND, E.PY_YIELD) |
| 332 | DOWN_EVENTS = (E.PY_START, E.PY_RESUME) |
nothing calls this directly
no test coverage detected