Skip one event loop run cycle. This is a private helper for 'asyncio.sleep()', used when the 'delay' is set to 0. It uses a bare 'yield' expression (which Task.__step knows how to handle) instead of creating a Future object.
()
| 674 | |
| 675 | @types.coroutine |
| 676 | def __sleep0(): |
| 677 | """Skip one event loop run cycle. |
| 678 | |
| 679 | This is a private helper for 'asyncio.sleep()', used |
| 680 | when the 'delay' is set to 0. It uses a bare 'yield' |
| 681 | expression (which Task.__step knows how to handle) |
| 682 | instead of creating a Future object. |
| 683 | """ |
| 684 | yield |
| 685 | |
| 686 | |
| 687 | async def sleep(delay, result=None): |
no outgoing calls
no test coverage detected
searching dependent graphs…