diff options
author | Ethan Smith <ethan@ethanhs.me> | 2018-05-26 20:38:33 (GMT) |
---|---|---|
committer | Łukasz Langa <lukasz@langa.pl> | 2018-05-26 20:38:33 (GMT) |
commit | c651275afe8515b2cf70b8152e19ce39df88f0dd (patch) | |
tree | 3195af174b5acf5c44f906b6fc8f83648e3f56db /Misc | |
parent | 09c4a7dee2eb39b515e5f499f184257cdbe9cb42 (diff) | |
download | cpython-c651275afe8515b2cf70b8152e19ce39df88f0dd.zip cpython-c651275afe8515b2cf70b8152e19ce39df88f0dd.tar.gz cpython-c651275afe8515b2cf70b8152e19ce39df88f0dd.tar.bz2 |
bpo-32380: Create functools.singledispatchmethod (#6306)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-03-29-03-09-22.bpo-32380.NhuGig.rst | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -1510,6 +1510,7 @@ Václav Šmilauer Allen W. Smith Christopher Smith Eric V. Smith +Ethan H. Smith Gregory P. Smith Mark Smith Nathaniel J. Smith 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. |