diff options
author | 2021-01-18 19:04:29 +0100 | |
---|---|---|
committer | 2021-01-18 10:04:29 -0800 | |
commit | f7b5bacd7a0b2084ce699eda6f6f4b1adfa16590 (patch) | |
tree | be30043c18594b8c9d4d7c2f59c87fb1a1074833 /Misc/NEWS.d/next | |
parent | bpo-42923: Py_FatalError() avoids fprintf() (GH-24242) (diff) | |
download | cpython-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.rst | 1 |
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``. |