summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <rhettinger@users.noreply.github.com>2020-05-08 14:53:15 (GMT)
committerGitHub <noreply@github.com>2020-05-08 14:53:15 (GMT)
commit81a5fc38e81b424869f4710f48e9371dfa2d3b77 (patch)
tree1691df16b3e62be26065f034810c95ad0deb9768 /Misc
parent2effef7453986bf43a6d921cd471a8bc0722c36a (diff)
downloadcpython-81a5fc38e81b424869f4710f48e9371dfa2d3b77.zip
cpython-81a5fc38e81b424869f4710f48e9371dfa2d3b77.tar.gz
cpython-81a5fc38e81b424869f4710f48e9371dfa2d3b77.tar.bz2
bpo-40541: Add optional *counts* parameter to random.sample() (GH-19970)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2020-05-06-15-36-47.bpo-40541.LlYghL.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-05-06-15-36-47.bpo-40541.LlYghL.rst b/Misc/NEWS.d/next/Library/2020-05-06-15-36-47.bpo-40541.LlYghL.rst
new file mode 100644
index 0000000..a2e694a
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2020-05-06-15-36-47.bpo-40541.LlYghL.rst
@@ -0,0 +1 @@
+Added an optional *counts* parameter to random.sample().