(self)
| 320 | self.check_events(caught) |
| 321 | |
| 322 | def test_nested_call(self): |
| 323 | self.check_events(nested_call) |
| 324 | |
| 325 | UP_EVENTS = (E.C_RETURN, E.C_RAISE, E.PY_RETURN, E.PY_UNWIND, E.PY_YIELD) |
| 326 | DOWN_EVENTS = (E.PY_START, E.PY_RESUME) |
nothing calls this directly
no test coverage detected