diff options
author | Mark Dickinson <mdickinson@enthought.com> | 2021-12-28 12:26:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-28 12:26:40 (GMT) |
commit | 02b5417f1107415abaf81acab7522f9aa84269ea (patch) | |
tree | 7cf38250e9f1acd8af8b139ad39861426311b5d4 /Misc/NEWS.d | |
parent | 196b53eb1e62871ca80dee180e4891b4dd5c52ac (diff) | |
download | cpython-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.rst | 1 |
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`. |