summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2017-06-09 20:20:41 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2017-06-09 20:20:41 (GMT)
commitfbfaa6fd57f8dc8a3da808acb8422370fad2f27b (patch)
tree19698cdf7bc911be2a0332055abd6b6b5d5f629f /Misc/NEWS
parent894a654a9caafb7a5bf63e1383a048041c05023b (diff)
downloadcpython-fbfaa6fd57f8dc8a3da808acb8422370fad2f27b.zip
cpython-fbfaa6fd57f8dc8a3da808acb8422370fad2f27b.tar.gz
cpython-fbfaa6fd57f8dc8a3da808acb8422370fad2f27b.tar.bz2
bpo-30014: make poll-like selector's modify() method faster (#1030)
* #30014: make selectors.DefaultSelector.modify() faster by relying on selector's modify() method instead of un/register()ing the fd * #30014: add unit test * speedup poll/epoll/devpoll modify() method by using internal modify() call * update doc * address PR comments * update NEWS entries * use != instead of 'is not'
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 f126dd4..a8aff86 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -350,6 +350,9 @@ Extension Modules
Library
-------
+- bpo-30014: modify() method of poll(), epoll() and devpoll() based classes of
+ selectors module is around 10% faster. Patch by Giampaolo Rodola'.
+
- bpo-30418: On Windows, subprocess.Popen.communicate() now also ignore EINVAL
on stdin.write() if the child process is still running but closed the pipe.