aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjonanifranco <66563903+jonanifranco@users.noreply.github.com>2021-01-18 19:04:29 +0100
committerGitHub <noreply@github.com>2021-01-18 10:04:29 -0800
commitf7b5bacd7a0b2084ce699eda6f6f4b1adfa16590 (patch)
treebe30043c18594b8c9d4d7c2f59c87fb1a1074833 /Misc/NEWS.d/next
parentbpo-42923: Py_FatalError() avoids fprintf() (GH-24242) (diff)
downloadcpython-f7b5bacd7a0b2084ce699eda6f6f4b1adfa16590.tar.gz
cpython-f7b5bacd7a0b2084ce699eda6f6f4b1adfa16590.tar.bz2
cpython-f7b5bacd7a0b2084ce699eda6f6f4b1adfa16590.zip
bpo-42944 Fix Random.sample when counts is not None (GH-24235)
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r--Misc/NEWS.d/next/Library/2021-01-18-10-41-44.bpo-42944.RrONvy.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-01-18-10-41-44.bpo-42944.RrONvy.rst b/Misc/NEWS.d/next/Library/2021-01-18-10-41-44.bpo-42944.RrONvy.rst
new file mode 100644
index 00000000000..b78d10aa255
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-01-18-10-41-44.bpo-42944.RrONvy.rst
@@ -0,0 +1 @@
+Fix ``random.Random.sample`` when ``counts`` argument is not ``None``.