Skip to content

Instantly share code, notes, and snippets.

@ferdiunal
Created July 6, 2018 20:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ferdiunal/72d4207c63ed47895ab381e0cf0de325 to your computer and use it in GitHub Desktop.
Save ferdiunal/72d4207c63ed47895ab381e0cf0de325 to your computer and use it in GitHub Desktop.
Bir işlemi belirli bir sayıda tekrar deneyin.
"""
Retry an operation a given number of times.
Bir işlemi belirli bir sayıda tekrar deneyin.
"""
def retry(times, callback):
try:
if not times:
return
return callback()
except:
if not times:
raise
return retry((times - 1),callback)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment