summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSergey Fedoseev <fedoseev.sergey@gmail.com>2019-06-01 20:32:18 (GMT)
committerRaymond Hettinger <rhettinger@users.noreply.github.com>2019-06-01 20:32:17 (GMT)
commite5f6207ba6cb510d9370519ba869296be01787be (patch)
tree82f73914776a321563cb6f0c7886994825fa9e01 /Misc
parent3b57f50efc16c65df96914ec53bc8d3dc28e18b6 (diff)
downloadcpython-e5f6207ba6cb510d9370519ba869296be01787be.zip
cpython-e5f6207ba6cb510d9370519ba869296be01787be.tar.gz
cpython-e5f6207ba6cb510d9370519ba869296be01787be.tar.bz2
bpo-34303: Micro-optimizations in functools.reduce() (GH-8598)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-08-03-09-47-20.bpo-34303.tOE2HP.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-08-03-09-47-20.bpo-34303.tOE2HP.rst b/Misc/NEWS.d/next/Library/2018-08-03-09-47-20.bpo-34303.tOE2HP.rst
new file mode 100644
index 0000000..94c1299
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-08-03-09-47-20.bpo-34303.tOE2HP.rst
@@ -0,0 +1,2 @@
+Performance of :func:`functools.reduce` is slightly improved. Patch by
+Sergey Fedoseev.