Home
last modified time | relevance | path

Searched refs:singledispatch (Results 1 – 16 of 16) sorted by relevance

/external/fonttools/Lib/fonttools.egg-info/
Drequires.txt20 singledispatch>=3.4.0.3
44 singledispatch>=3.4.0.3
DPKG-INFO552 - Require typing>=3.6.4 on py27 to fix issue with singledispatch (#1423).
/external/fonttools/Lib/fontTools/misc/
Dplistlib.py15 from functools import singledispatch
18 from singledispatch import singledispatch
20 singledispatch = None variable
382 if singledispatch is not None:
384 @singledispatch
/external/python/cpython3/Lib/test/
Dtest_functools.py1656 @functools.singledispatch
1667 @functools.singledispatch
1690 @functools.singledispatch
1704 @functools.singledispatch
1715 @functools.singledispatch
1792 @functools.singledispatch
1911 @functools.singledispatch
1922 @functools.singledispatch
1968 @functools.singledispatch
1993 @functools.singledispatch
[all …]
/external/python/cpython3/Doc/library/
Dfunctools.rst278 .. decorator:: singledispatch
283 To define a generic function, decorate it with the ``@singledispatch``
287 >>> from functools import singledispatch
288 >>> @singledispatch
367 The original function decorated with ``@singledispatch`` is registered
/external/python/cpython3/Lib/
Dpkgutil.py4 from functools import singledispatch as simplegeneric
Dfunctools.py750 def singledispatch(func): function
/external/python/cpython3/Misc/NEWS.d/
D3.7.0a4.rst647 ``functools.singledispatch`` now supports registering implementations using
D3.7.1rc1.rst714 functools.singledispatch now raises TypeError instead of IndexError when no
D3.5.1rc1.rst903 Fixed functools.singledispatch on classes with falsy metaclasses. Patch by
/external/python/cpython3/Doc/whatsnew/
D3.4.rst118 * :ref:`Single-dispatch generic functions <whatsnew-singledispatch>` in
860 .. _whatsnew-singledispatch:
862 The new :func:`~functools.singledispatch` decorator brings support for
D3.7.rst918 :func:`functools.singledispatch` now supports registering implementations
/external/python/cpython3/Doc/
Dglossary.rst460 :func:`functools.singledispatch` decorator, and :pep:`443`.
/external/fonttools/
DNEWS.rst135 - Require typing>=3.6.4 on py27 to fix issue with singledispatch (#1423).
DPKG-INFO552 - Require typing>=3.6.4 on py27 to fix issue with singledispatch (#1423).
/external/python/cpython3/Misc/
DHISTORY735 - Issue #23572: Fixed functools.singledispatch on classes with falsy