view python/example/retry.py @ 804:624a7fc0d7ca

this looks like something i dont need anymore (if i ever did)
author Jeff Hammel <k0scist@gmail.com>
date Fri, 28 Oct 2016 17:01:54 -0700
parents 88f19ebb43ea
children
line wrap: on
line source

def retry(f, retries=5, args=(), kw=None, exceptions=()):

    kw = kw or {}
    for index in range(retries):
        try:
            return f(*args, **kw)
        except Exception as e:
            if isinstance(e, exceptions):
                print ("something bad happen")
            else:
                raise
    raise RetryTimeout("Tries a bunch of times :(")