(self, *, retry_times=3,
wait_secs=5, errors=(Exception, ))
| 29 | class Retry(object): |
| 30 | |
| 31 | def __init__(self, *, retry_times=3, |
| 32 | wait_secs=5, errors=(Exception, )): |
| 33 | self.retry_times = retry_times |
| 34 | self.wait_secs = wait_secs |
| 35 | self.errors = errors |
| 36 | |
| 37 | def __call__(self, fn): |
| 38 |