summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2013-12-08 13:35:55 (GMT)
committerChristian Heimes <christian@cheimes.de>2013-12-08 13:35:55 (GMT)
commit5bb414d176b5c99d9f2500738fe77c47ea938763 (patch)
tree84b7bfa89c46eb75e08ddb25ba174ac2b769271e /Misc
parentead8d0858b326ec8d902dc597aa3da23e4c5a82b (diff)
downloadcpython-5bb414d176b5c99d9f2500738fe77c47ea938763.zip
cpython-5bb414d176b5c99d9f2500738fe77c47ea938763.tar.gz
cpython-5bb414d176b5c99d9f2500738fe77c47ea938763.tar.bz2
Issue #19343: Expose FreeBSD-specific APIs in resource module. Original patch by Koobs.
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 93cdbf4..5c10e1a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,6 +18,9 @@ Core and Builtins
Library
-------
+- Issue #19343: Expose FreeBSD-specific APIs in resource module. Original
+ patch by Koobs.
+
- Issue #19506: Use a memoryview to avoid a data copy when piping data
to stdin within subprocess.Popen.communicate. 5-10% less cpu usage.