You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sleep until the monotonic clock reaches the specified clock value.
If clock is 0, forces the current task to yield to the next task (if any).
The first line is inaccurate. _sleep does not sleep until the supplied value is less than or equal to "now"; it sleeps for specified value interpreted as a number of seconds, according to the kernel source here:
The docstring for
curio.traps._sleep
reads:The first line is inaccurate.
_sleep
does not sleep until the supplied value is less than or equal to "now"; it sleeps for specified value interpreted as a number of seconds, according to the kernel source here:curio/curio/kernel.py
Line 541 in 1484546
The text was updated successfully, but these errors were encountered: