(self)
| 131 | yield i |
| 132 | |
| 133 | async def async_generator_function_example(self): |
| 134 | async for i in range(2): |
| 135 | yield i |
| 136 | |
| 137 | async def coroutine_function_example(self): |
| 138 | return 'spam' |
no outgoing calls
no test coverage detected
searching dependent graphs…