File: release-notes.txt

package info (click to toggle)
python-multipledispatch 1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 272 kB
  • sloc: python: 1,116; makefile: 141
file content (20 lines) | stat: -rw-r--r-- 930 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
0.1.0 - first release
0.2.0 - static analysis
0.3.0 - dispatch on instance methods
0.4.0 - support for namespaces
        register methods a la singledispatch 
        documentation
        Faster caching performance
0.4.1 - expose ambiguity response via callback
        Improve NotImplemented error messages to include missing signature
0.4.2 - Dispatcher is serializable
0.4.3 - Dispatcher.register handles union types
        (previously only @dispatch covered this)
0.4.4 - Docstrings
        Better error handling on bad type inputs
0.4.5 - halt_reordering function to stop reordering after each declaration
0.4.6 - Rename Dispatcher.resolve to Dispatcher.dispatch to adhere to
        singledispatch api.  Also change to variadic args
        .dispatch returns None rather than raising an error on null result
0.4.7 - MDNotImplementedError allows Dispatchers to continue on to the
        next-most-specific implementation