码迷,mamicode.com
首页 > 其他好文 > 详细

函数重做的装饰器

时间:2020-01-20 17:31:40      阅读:70      评论:0      收藏:0      [点我收藏+]

标签:while   def   ISE   temp   exce   until   print   tor   cee   

函数重做的装饰器

def retry_times(attempt):
    def decorator(func):
        def wrapper(*args, **kw):
            att = 0
            while att < attempt:
                try:
                    return func(*args, **kw)
                except Exception as e:
                    print(e)
                    time.sleep(2)
                    att += 1
        return wrapper
    return decorator

@retry_times(3)
def make_trouble():
    ‘‘‘Retry until succeed‘‘‘
    print (retrying...)
    raise

if __name__ == __main__:
    make_trouble()

函数重做的装饰器

标签:while   def   ISE   temp   exce   until   print   tor   cee   

原文地址:https://www.cnblogs.com/xiao-apple36/p/12218754.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!