(*args, **kwargs)
| 371 | def test_find_recursion(self): |
| 372 | captured = [] |
| 373 | def capture_exc(*args, **kwargs): |
| 374 | captured.append(sys.exc_info()) |
| 375 | with mock.patch.object(ip, 'showtraceback', capture_exc): |
| 376 | ip.run_cell("r3o2()") |
| 377 |
nothing calls this directly
no outgoing calls
no test coverage detected