diff options
author | Xiang Zhang <angwerzx@126.com> | 2017-05-17 13:04:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-17 13:04:00 (GMT) |
commit | 6f75bc003ab4d5294b0291289ae03f7a8d305f46 (patch) | |
tree | 83a5f81826719a7df0dc6dc5844eb7813a1b526e /Misc/NEWS | |
parent | 0774e79b93cc494b3a957d538c7c112e289973c0 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |