Python中的装饰器之@wraps(四)

def wrapper(func):

    @wraps(func)  # 修改名称空间: inner ---》 func
    def inner(*args, **kwargs):
        '''
        此处是装饰器的注释
        :param func:
        :return:
        '''
        res = func(*args, **kwargs)
        return res
    return inner  # ---》 func


@wrapper
def index():
    '''
    此处是index函数的注释
    :return:
    '''
    pass

以上

posted @ 2019-11-13 21:04  GhostAnt  阅读(152)  评论(0编辑  收藏  举报