summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorEthan Smith <ethan@ethanhs.me>2018-05-26 20:38:33 (GMT)
committerƁukasz Langa <lukasz@langa.pl>2018-05-26 20:38:33 (GMT)
commitc651275afe8515b2cf70b8152e19ce39df88f0dd (patch)
tree3195af174b5acf5c44f906b6fc8f83648e3f56db /Misc/NEWS.d
parent09c4a7dee2eb39b515e5f499f184257cdbe9cb42 (diff)
downloadcpython-c651275afe8515b2cf70b8152e19ce39df88f0dd.zip
cpython-c651275afe8515b2cf70b8152e19ce39df88f0dd.tar.gz
cpython-c651275afe8515b2cf70b8152e19ce39df88f0dd.tar.bz2
bpo-32380: Create functools.singledispatchmethod (#6306)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2018-03-29-03-09-22.bpo-32380.NhuGig.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-03-29-03-09-22.bpo-32380.NhuGig.rst b/Misc/NEWS.d/next/Library/2018-03-29-03-09-22.bpo-32380.NhuGig.rst
new file mode 100644
index 0000000..ab852a5
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-03-29-03-09-22.bpo-32380.NhuGig.rst
@@ -0,0 +1,2 @@
+Create functools.singledispatchmethod to support generic single dispatch on
+descriptors and methods.