Skip to main content

Multiple argument dispatching.

Project description

Multiple argument dispatching

Call multimethod on a variable number of types. It returns a decorator which finds the multimethod of the same name, creating it if necessary, and adds that function to it. For example:

@multimethod(*types)
def func(*args):
    pass

func is now a multimethod which will delegate to the above function, when called with arguments of the specified types. If an exact match can’t be found, the next closest method is called (and cached). If strict is enabled, and there are multiple candidate methods, a TypeError is raised. A function can have more than one multimethod decorator.

See tests for more example usage. Supported on Python 2.6 or higher, including Python 3.

Changes in 0.4:
  • Dispatch on python 3 annotations

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

multimethod-0.4.tar.gz (3.7 kB view hashes)

Uploaded Source

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