summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMariatta <Mariatta@users.noreply.github.com>2017-05-27 14:19:40 (GMT)
committerGitHub <noreply@github.com>2017-05-27 14:19:40 (GMT)
commit440bc4f4b2690b99541e87bedfdb0dc4abbc0501 (patch)
tree434a113097f34f7db6c92c7ff3d0a47cb760aab5 /Misc/NEWS
parenta815b5a100f38b883b08d39567c5557de2c19a53 (diff)
downloadcpython-440bc4f4b2690b99541e87bedfdb0dc4abbc0501.zip
cpython-440bc4f4b2690b99541e87bedfdb0dc4abbc0501.tar.gz
cpython-440bc4f4b2690b99541e87bedfdb0dc4abbc0501.tar.bz2
[3.5] bpo-29960 _random.Random corrupted on exception in setstate(). … (#1288)
(cherry picked from commit 9616a82e7802241a4b74cf7ae38d43c37bf66e48)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5aed87a..f399734 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -56,6 +56,9 @@ Extension Modules
Library
-------
+- bpo-29960: Preserve generator state when _random.Random.setstate()
+ raises an exception. Patch by Bryan Olson.
+
- bpo-30414: multiprocessing.Queue._feed background running
thread do not break from main loop on exception.