summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2017-06-10 23:51:52 (GMT)
committerGuido van Rossum <guido@python.org>2017-06-10 23:51:52 (GMT)
commit05dc20f992754c4ed2b1601026263e1f309cead9 (patch)
tree95abfaf5d471da5063c513c2facbdae58fd0b4df /Misc/NEWS
parent6b6e68776663c0dda04b6a36609297728da2ae9e (diff)
downloadcpython-05dc20f992754c4ed2b1601026263e1f309cead9.zip
cpython-05dc20f992754c4ed2b1601026263e1f309cead9.tar.gz
cpython-05dc20f992754c4ed2b1601026263e1f309cead9.tar.bz2
#30624 / selectors: use bare except clause in order to not leave the fd in a bad state in case of error (#2082)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 20cea47..3333326 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -350,6 +350,10 @@ Extension Modules
Library
-------
+- bpo-30624: selectors does not take KeyboardInterrupt and SystemExit into
+ account, leaving a fd in a bad state in case of error. Patch by Giampaolo
+ Rodola'.
+
- bpo-30595: multiprocessing.Queue.get() with a timeout now polls its reader in
non-blocking mode if it succeeded to aquire the lock but the acquire took
longer than the timeout.