Skip to main content

Multiple dispatch in function annotaions

Project description

Build Status

A relatively sane approach to multiple dispatch in Python.

Forked from to support and use annotations for dispatch. This implementation of multiple dispatch is efficient, mostly complete, performs static analysis to avoid conflicts, and provides optional namespace support. It looks good too.

Example

>>> from adispatch import adispatch

>>> @adispatch()
... def add(x: int, y: int):
...     return x + y

>>> @adispatch()
... def add(x: object, y: object):
...     return "%s + %s" % (x, y)

>>> add(1, 2)
3

>>> add(1, 'hello')
'1 + hello'

What this does

  • Dispatches on all non-keyword arguments

  • Supports inheritance

  • Supports instance methods

  • Supports union types, e.g. (int, float)

  • Supports builtin abstract classes, e.g. Iterator, Number, ...

  • Caches for fast repeated lookup

  • Identifies possible ambiguities at function definition time

  • Provides hints to resolve ambiguities when they occur

  • Supports namespaces with optional keyword arguments

What this doesn’t do

  • Vararg dispatch

@adispatch()
def add(*args: [int]):
    ...
  • Diagonal dispatch

a = arbitrary_type()
@adispatch()
def are_same_type(x: a, y: a):
    return True

Installation and Dependencies

adispatch supports Python 3.2+, is pure python and requires no other dependencies.

License

New BSD. See License.

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

adispatch-0.5.0.tar.gz (7.8 kB view details)

Uploaded Source

File details

Details for the file adispatch-0.5.0.tar.gz.

File metadata

  • Download URL: adispatch-0.5.0.tar.gz
  • Upload date:
  • Size: 7.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.29.0 CPython/3.4.6

File hashes

Hashes for adispatch-0.5.0.tar.gz
Algorithm Hash digest
SHA256 e3bd82b2b227ec12d444de95bdb3416742821ca2fdf175d64db9a9fc4f645a48
MD5 2a8afd255dbff0ad37ed1298e5ee5fb0
BLAKE2b-256 9b274866facebc15c5458cb709c4022e7cbc150c6fad7d388eb512ae8ae47b37

See more details on using hashes here.

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