summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorYash Aggarwal <Aggarwal.yash2011@gmail.com>2019-06-01 07:21:27 (GMT)
committerRaymond Hettinger <rhettinger@users.noreply.github.com>2019-06-01 07:21:27 (GMT)
commit4a686504eb2bbf69adf78077458508a7ba131667 (patch)
tree1fed04a5328f196e158ee5e22f3cf62044d9756c /Misc
parent5ac0b988fd5f1428efe35329c531c7b5c74d37f6 (diff)
downloadcpython-4a686504eb2bbf69adf78077458508a7ba131667.zip
cpython-4a686504eb2bbf69adf78077458508a7ba131667.tar.gz
cpython-4a686504eb2bbf69adf78077458508a7ba131667.tar.bz2
bpo-35431: Implemented math.comb (GH-11414)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-01-02-19-48-23.bpo-35431.FhG6QA.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-01-02-19-48-23.bpo-35431.FhG6QA.rst b/Misc/NEWS.d/next/Library/2019-01-02-19-48-23.bpo-35431.FhG6QA.rst
new file mode 100644
index 0000000..34687bd
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-01-02-19-48-23.bpo-35431.FhG6QA.rst
@@ -0,0 +1,4 @@
+Implement :func:`math.comb` that returns binomial coefficient, that computes
+the number of ways to choose k items from n items without repetition and
+without order.
+Patch by Yash Aggarwal and Keller Fuchs.