diff options
author | madman-bob <madman.bob@hotmail.co.uk> | 2018-10-25 14:02:10 (GMT) |
---|---|---|
committer | Victor Stinner <vstinner@redhat.com> | 2018-10-25 14:02:10 (GMT) |
commit | e25d5fc18e6c4b0062cd71b2eb1fd2d5eb5e2d3d (patch) | |
tree | a5114f0bbea703956e85a820eb7e78f312fba3d3 /Misc | |
parent | 6279c1c5003cd94b5e04e568ce3df7c4e8f1eaa3 (diff) | |
download | cpython-e25d5fc18e6c4b0062cd71b2eb1fd2d5eb5e2d3d.zip cpython-e25d5fc18e6c4b0062cd71b2eb1fd2d5eb5e2d3d.tar.gz cpython-e25d5fc18e6c4b0062cd71b2eb1fd2d5eb5e2d3d.tar.bz2 |
bpo-32321: Add pure Python fallback for functools.reduce (GH-8548)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-07-29-13-50-32.bpo-32321.hDoNKC.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-07-29-13-50-32.bpo-32321.hDoNKC.rst b/Misc/NEWS.d/next/Library/2018-07-29-13-50-32.bpo-32321.hDoNKC.rst new file mode 100644 index 0000000..82ee39f --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-07-29-13-50-32.bpo-32321.hDoNKC.rst @@ -0,0 +1,2 @@ +Add pure Python fallback for functools.reduce. +Patch by Robert Wright. |