summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorXiang Zhang <angwerzx@126.com>2017-05-17 13:04:00 (GMT)
committerGitHub <noreply@github.com>2017-05-17 13:04:00 (GMT)
commit6f75bc003ab4d5294b0291289ae03f7a8d305f46 (patch)
tree83a5f81826719a7df0dc6dc5844eb7813a1b526e /Misc/NEWS
parent0774e79b93cc494b3a957d538c7c112e289973c0 (diff)
downloadcpython-6f75bc003ab4d5294b0291289ae03f7a8d305f46.zip
cpython-6f75bc003ab4d5294b0291289ae03f7a8d305f46.tar.gz
cpython-6f75bc003ab4d5294b0291289ae03f7a8d305f46.tar.bz2
bpo-30301: Fix AttributeError when using SimpleQueue.empty() (#1601)
Under *spawn* and *forkserver* start methods, SimpleQueue.empty() could raise AttributeError due to not setting _poll in __setstate__.
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 0bae483..4006ccd 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -323,6 +323,9 @@ Extension Modules
Library
-------
+- bpo-30301: Fix AttributeError when using SimpleQueue.empty() under
+ *spawn* and *forkserver* start methods.
+
- bpo-30375: Warnings emitted when compile a regular expression now always
point to the line in the user code. Previously they could point into inners
of the re module if emitted from inside of groups or conditionals.