summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2016-09-07 00:15:29 (GMT)
committerRaymond Hettinger <python@rcn.com>2016-09-07 00:15:29 (GMT)
commite8f1e002c642e30b820181cd87ae9d187d709f59 (patch)
treef5cb3c6514eec58c8bf2071dbaa7b71473f5d2d4 /Misc
parent63d98bcd4c88eea1c4b50dae95da662284813114 (diff)
downloadcpython-e8f1e002c642e30b820181cd87ae9d187d709f59.zip
cpython-e8f1e002c642e30b820181cd87ae9d187d709f59.tar.gz
cpython-e8f1e002c642e30b820181cd87ae9d187d709f59.tar.bz2
Issue #18844: Add random.weighted_choices()
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e913ef8..fbf7b2b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -101,6 +101,8 @@ Library
- Issue #27691: Fix ssl module's parsing of GEN_RID subject alternative name
fields in X.509 certs.
+- Issue #18844: Add random.weighted_choices().
+
- Issue #25761: Improved error reporting about truncated pickle data in
C implementation of unpickler. UnpicklingError is now raised instead of
AttributeError and ValueError in some cases.