diff options
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2023-01-08 19:40:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-08 19:40:35 (GMT) |
commit | 9a68ff12c3e647a4f8dd935919ae296593770a6b (patch) | |
tree | ad74d7cc798d2ecd2bd87d7a09317d7875cac51a /Misc | |
parent | 87d3bd0e02cddc415a42573052110eb9301d2c3d (diff) | |
download | cpython-9a68ff12c3e647a4f8dd935919ae296593770a6b.zip cpython-9a68ff12c3e647a4f8dd935919ae296593770a6b.tar.gz cpython-9a68ff12c3e647a4f8dd935919ae296593770a6b.tar.bz2 |
GH-100805: Support numpy.array() in random.choice(). (GH-100830)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-01-07-15-13-47.gh-issue-100805.05rBz9.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-01-07-15-13-47.gh-issue-100805.05rBz9.rst b/Misc/NEWS.d/next/Library/2023-01-07-15-13-47.gh-issue-100805.05rBz9.rst new file mode 100644 index 0000000..4424d7c --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-01-07-15-13-47.gh-issue-100805.05rBz9.rst @@ -0,0 +1,2 @@ +Modify :func:`random.choice` implementation to once again work with NumPy +arrays. |