File: control

package info (click to toggle)
python-multipledispatch 0.6.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 256 kB
  • sloc: python: 1,100; makefile: 141
file content (77 lines) | stat: -rw-r--r-- 3,009 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
Source: python-multipledispatch
Section: python
Priority: optional
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders: Christian Kastner <ckk@debian.org>
Build-Depends: debhelper-compat (= 13),
               dh-python,
               python3-all,
               python3-doc <!nodoc>,
               python3-pytest <!nocheck>,
               python3-pytest-benchmark <!nocheck>,
               python3-setuptools,
               python3-sphinx <!nodoc>,
Rules-Requires-Root: no
Standards-Version: 4.6.0
Homepage: https://github.com/mrocklin/multipledispatch
Vcs-Git: https://salsa.debian.org/python-team/packages/python-multipledispatch.git
Vcs-Browser: https://salsa.debian.org/python-team/packages/python-multipledispatch

Package: python3-multipledispatch
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}
Description: multiple dispatch in Python
 This implementation of multiple dispatch is efficient, mostly complete,
 performs static analysis to avoid conflicts, and provides optional namespace
 support. It looks good too.
 .
 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
  * Supports variadic dispatch
 .
 What this doesn't do:
  * Diagonal dispatch
  * Efficient update: The addition of a new signature requires a full resolve
    of the whole function. This becomes troublesome after you get to a few
    hundred type signatures.
 .
 This package contains the Python 3.x version of multipledispatch.

Package: python-multipledispatch-doc
Architecture: all
Multi-Arch: foreign
Section: doc
Depends: ${misc:Depends}, ${sphinxdoc:Depends}
Suggests: python3-multipledispatch
Description: documentation for multipledispatch
 This implementation of multiple dispatch is efficient, mostly complete,
 performs static analysis to avoid conflicts, and provides optional namespace
 support. It looks good too.
 .
 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
  * Supports variadic dispatch
 .
 What this doesn't do:
  * Diagonal dispatch
  * Efficient update: The addition of a new signature requires a full resolve
    of the whole function. This becomes troublesome after you get to a few
    hundred type signatures.
 .
 This package contains the documentation for multipledispatch.