Skip to main content

inherit **kwargs from another fucntion in the signature.

Project description

Sign

Decorators to inherit signature form one function to another.

Mainly useful when a function or method takes *args, **kwargs and pass them (mostly unmodified) to another function or methods.

This will merge the signature of the decorated function, with the target function to simplify inspection.

example

def foo(a=1, b=2):
    pass

@sign.inherit(foo):
def bar(*args, **kwargs):
    return foo(*args, **kwargs)

bar signature should appear as:

bar(*args, a=1, b=2, **kwargs)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sign-0.0.2.tar.gz (2.2 kB view hashes)

Uploaded Source

Built Distribution

sign-0.0.2-py3-none-any.whl (3.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page