Python: Passing the default values of function'

2019-02-23 15:27发布

Consider example:

def decorator(func):
    def wrapper(*args, **kwargs):
        print(args, kwargs)
        func(*args, **kwargs)
    return wrapper

@decorator
def foo(x, y, z=0):
    pass

foo(5, 5)

Output:

(5, 5) {}

Why not (5, 5) {'z': 0}? How to pass all default values of the function foo to *args or **kwargs using only decorator (for functions) or metaclass (for class methods, e.g. __init__)?

1条回答
做自己的国王
2楼-- · 2019-02-23 15:29

The wrapper is just a normal function. It does not have "access" to the internals of the wrapped function.

You would have to use introspection to get them. See a related question:

How to find out the default values of a particular function's argument in another function in Python?

查看更多
登录 后发表回答