Let us walk on the 3-isogeny graph
Loading...
Searching...
No Matches
pip._vendor.tenacity.nap Namespace Reference

Data Structures

class  sleep_using_event
 

Functions

None sleep (float seconds)
 

Function Documentation

◆ sleep()

None sleep ( float  seconds)
Sleep strategy that delays execution for a given number of seconds.

This is the default strategy, and may be mocked out for unit testing.

Definition at line 25 of file nap.py.

25def sleep(seconds: float) -> None:
26 """
27 Sleep strategy that delays execution for a given number of seconds.
28
29 This is the default strategy, and may be mocked out for unit testing.
30 """
31 time.sleep(seconds)
32
33
for i

References i.