()
| 92 | generator = type((lambda: (yield))()) |
| 93 | ## coroutine ## |
| 94 | async def _coro(): pass |
| 95 | _coro = _coro() |
| 96 | coroutine = type(_coro) |
| 97 | _coro.close() # Prevent ResourceWarning |
no outgoing calls
no test coverage detected
searching dependent graphs…