diff options
author | jonanifranco <66563903+jonanifranco@users.noreply.github.com> | 2021-01-18 18:04:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-18 18:04:29 (GMT) |
commit | f7b5bacd7a0b2084ce699eda6f6f4b1adfa16590 (patch) | |
tree | be30043c18594b8c9d4d7c2f59c87fb1a1074833 /Misc | |
parent | 314b8787e0c50985ba708034b84ff5b37a1d47de (diff) | |
download | cpython-f7b5bacd7a0b2084ce699eda6f6f4b1adfa16590.zip cpython-f7b5bacd7a0b2084ce699eda6f6f4b1adfa16590.tar.gz cpython-f7b5bacd7a0b2084ce699eda6f6f4b1adfa16590.tar.bz2 |
bpo-42944 Fix Random.sample when counts is not None (GH-24235)
Diffstat (limited to 'Misc')
-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 0000000..b78d10a --- /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``. |