From: Victor Stinner Date: Thu, 20 Jun 2013 22:36:30 +0000 (+0200) Subject: whatsnew/3.4: mention functools.singledispatch, PEP 443 X-Git-Tag: v3.4.0a1~442 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=854ffcb6f34222c19b3514bb71381ab706777e80;p=thirdparty%2FPython%2Fcpython.git whatsnew/3.4: mention functools.singledispatch, PEP 443 --- diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index 4d93707ea7ef..8399f6874b1e 100644 --- a/Doc/whatsnew/3.4.rst +++ b/Doc/whatsnew/3.4.rst @@ -177,6 +177,12 @@ Added ``FAIL_FAST`` flag to halt test running as soon as the first failure is detected. (Contributed by R. David Murray and Daniel Urban in :issue:`16522`.) +functools +--------- + +New :func:`functools.singledispatch` decorator: see the :pep:`443`. + + smtplib -------