summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2016-10-29 23:55:36 (GMT)
committerRaymond Hettinger <python@rcn.com>2016-10-29 23:55:36 (GMT)
commit30d00e54dde47b11f5b338aaba17760b641e1705 (patch)
tree4d185bcc465b08f57558d1b8b39f788efba2fc82 /Misc
parentab5cf4da4e57fd317e6c4baaaa1d679c0ee9ef08 (diff)
downloadcpython-30d00e54dde47b11f5b338aaba17760b641e1705.zip
cpython-30d00e54dde47b11f5b338aaba17760b641e1705.tar.gz
cpython-30d00e54dde47b11f5b338aaba17760b641e1705.tar.bz2
Issue #18844: Make the various ways for specifing weights produce the same results.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 75f0ba6..d49162b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -34,6 +34,9 @@ Library
- Issue #27275: Fixed implementation of pop() and popitem() methods in
subclasses of accelerated OrderedDict.
+- Issue #18844: The various ways of specifing weights for random.choices()
+ now produce the same result sequences.
+
- Issue #28255: calendar.TextCalendar().prmonth() no longer prints a space
at the start of new line after printing a month's calendar. Patch by
Xiang Zhang.