diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-06-20 22:36:30 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-06-20 22:36:30 (GMT) |
commit | 854ffcb6f34222c19b3514bb71381ab706777e80 (patch) | |
tree | 83f417938198edfc3964e6c6209f0d1edb466331 /Doc/whatsnew | |
parent | 84e33c84315a1883914e29035880999f64339da0 (diff) | |
download | cpython-854ffcb6f34222c19b3514bb71381ab706777e80.zip cpython-854ffcb6f34222c19b3514bb71381ab706777e80.tar.gz cpython-854ffcb6f34222c19b3514bb71381ab706777e80.tar.bz2 |
whatsnew/3.4: mention functools.singledispatch, PEP 443
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.4.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index 4d93707..8399f68 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 ------- |