保留装饰功能的签名

保留装饰功能的签名,第1张

保留装饰功能的签名
  1. 安装装饰器模块:

    $ pip install decorator
  2. 修改以下内容的定义

    args_as_ints()

    import decorator

    @decorator.decorator
    def args_as_ints(f, args, kwargs):
    args = [int(x) for x in args]
    kwargs = dict((k, int(v)) for k, v in kwargs.items())
    return f(
    args, **kwargs)

    @args_as_ints
    def funny_function(x, y, z=3):
    “”“Computes xy + 2z”“”
    return xy + 2z

    print funny_function(“3”, 4.0, z=”5”)

    22

    help(funny_function)

    Help on function funny_function in module main:funny_function(x, y, z=3)Computes xy + 2z

Python 3.4以上

functools.wraps()
自Python
3.4起,来自stdlib的文件就保留了签名:

import functoolsdef args_as_ints(func):    @functools.wraps(func)    def wrapper(*args, **kwargs):        args = [int(x) for x in args]        kwargs = dict((k, int(v)) for k, v in kwargs.items())        return func(*args, **kwargs)    return wrapper@args_as_intsdef funny_function(x, y, z=3):    """Computes x*y + 2*z"""    return x*y + 2*zprint(funny_function("3", 4.0, z="5"))# 22help(funny_function)# Help on function funny_function in module __main__:## funny_function(x, y, z=3)#     Computes x*y + 2*z

functools.wraps()
至少从Python 2.5开始就可用,但是它不在那里保留签名:

help(funny_function)# Help on function funny_function in module __main__:## funny_function(*args, **kwargs)#    Computes x*y + 2*z

注意:

*args, **kwargs
代替
x, y, z=3



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5507983.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-13
下一篇 2022-12-13

发表评论

登录后才能评论

评论列表(0条)

保存