summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorMark Dickinson <mdickinson@enthought.com>2021-12-28 12:26:40 (GMT)
committerGitHub <noreply@github.com>2021-12-28 12:26:40 (GMT)
commit02b5417f1107415abaf81acab7522f9aa84269ea (patch)
tree7cf38250e9f1acd8af8b139ad39861426311b5d4 /Misc/NEWS.d
parent196b53eb1e62871ca80dee180e4891b4dd5c52ac (diff)
downloadcpython-02b5417f1107415abaf81acab7522f9aa84269ea.zip
cpython-02b5417f1107415abaf81acab7522f9aa84269ea.tar.gz
cpython-02b5417f1107415abaf81acab7522f9aa84269ea.tar.bz2
bpo-37295: Speed up math.comb(n, k) for 0 <= k <= n <= 67 (GH-30275)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2021-12-27-15-52-28.bpo-37295.s3LPo0.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-12-27-15-52-28.bpo-37295.s3LPo0.rst b/Misc/NEWS.d/next/Library/2021-12-27-15-52-28.bpo-37295.s3LPo0.rst
new file mode 100644
index 0000000..a624f10
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-12-27-15-52-28.bpo-37295.s3LPo0.rst
@@ -0,0 +1 @@
+Add fast path for ``0 <= k <= n <= 67`` for :func:`math.comb`.