retry.it icon indicating copy to clipboard operation
retry.it copied to clipboard

retry.it, a simple retry library

Results 1 retry.it issues
Sort by recently updated
recently updated
newest added

Let's create file t.py ```python3 from time import sleep import retry def foo(): sleep(5) assert False retry.retry(interval=0, timeout=1)(foo)() ``` then ``` $ time python3 t.py Exception experienced when trying function...