summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2013-12-08 03:14:59 (GMT)
committerGregory P. Smith <greg@krypto.org>2013-12-08 03:14:59 (GMT)
commit5ca129b8f016668bf914592e58082c452a7ad9b4 (patch)
tree1cf1a6accd1ff027c55ac5aa0e26c53107a4a845 /Misc
parent5c29424f4bae94e32ec7332551f3ccabf2f957dd (diff)
parent774f909489ca1395ba1e3f3a1f3d43495df6cdfe (diff)
downloadcpython-5ca129b8f016668bf914592e58082c452a7ad9b4.zip
cpython-5ca129b8f016668bf914592e58082c452a7ad9b4.tar.gz
cpython-5ca129b8f016668bf914592e58082c452a7ad9b4.tar.bz2
Fixes issue #19506: Use a memoryview to avoid a data copy when piping data
to stdin within subprocess.Popen.communicate. 5-10% less cpu usage.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1501f6f..3f613dc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,6 +18,9 @@ Core and Builtins
Library
-------
+- Issue #19506: Use a memoryview to avoid a data copy when piping data
+ to stdin within subprocess.Popen.communicate. 5-10% less cpu usage.
+
- Issue #19876: selectors unregister() no longer raises ValueError or OSError
if the FD is closed (as long as it was registered).