()
| 2388 | self.assertEqual(sys.get_coroutine_origin_tracking_depth(), 2) |
| 2389 | |
| 2390 | def nested(): |
| 2391 | return (self.here(), corofn()) |
| 2392 | fname, lineno = self.here() |
| 2393 | ((nested_fname, nested_lineno), coro) = nested() |
| 2394 | with contextlib.closing(coro): |