Equivalent to asyncio.sleep(), converted to time.sleep() by async_to_sync.
(s)
| 75 | |
| 76 | |
| 77 | def asleep(s): |
| 78 | """ |
| 79 | Equivalent to asyncio.sleep(), converted to time.sleep() by async_to_sync. |
| 80 | """ |
| 81 | return asyncio.sleep(s) |
| 82 | |
| 83 | |
| 84 | def is_alive(t): |
no outgoing calls
searching dependent graphs…