diff options
author | Gregory P. Smith <greg@krypto.org> | 2013-12-08 03:14:59 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2013-12-08 03:14:59 (GMT) |
commit | 5ca129b8f016668bf914592e58082c452a7ad9b4 (patch) | |
tree | 1cf1a6accd1ff027c55ac5aa0e26c53107a4a845 /Misc | |
parent | 5c29424f4bae94e32ec7332551f3ccabf2f957dd (diff) | |
parent | 774f909489ca1395ba1e3f3a1f3d43495df6cdfe (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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). |