wraps

  • python wraps装饰器

    from functools import wraps def decorator(func): “””this is decorator __doc__””” @wraps(fu…

    python 2022年8月21日