summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2013-03-03 18:45:05 (GMT)
committerGregory P. Smith <greg@krypto.org>2013-03-03 18:45:05 (GMT)
commit255bf5b9ec2d25698240cc1bf760887cd3c28436 (patch)
treeb5a631d3db639885fafef297f435a36e206364e5 /Misc
parentbce9a5d5cd783e116fe404c438cb08fc391be111 (diff)
downloadcpython-255bf5b9ec2d25698240cc1bf760887cd3c28436.zip
cpython-255bf5b9ec2d25698240cc1bf760887cd3c28436.tar.gz
cpython-255bf5b9ec2d25698240cc1bf760887cd3c28436.tar.bz2
Issue #16962: Use getdents64 instead of the obsolete getdents syscall in
the subprocess module on Linux.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 3 insertions, 3 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 983c1cc..d569813 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -191,6 +191,9 @@ Core and Builtins
Library
-------
+- Issue #16962: Use getdents64 instead of the obsolete getdents syscall
+ in the subprocess module on Linux.
+
- Issue #17018: Make Process.join() retry if os.waitpid() fails with EINTR.
- Issue #14720: sqlite3: Convert datetime microseconds correctly.
@@ -626,9 +629,6 @@ Library
- Issue #15906: Fix a regression in `argparse` caused by the preceding change,
when ``action='append'``, ``type='str'`` and ``default=[]``.
-Extension Modules
------------------
-
- Issue #12268: The io module file object write methods no longer abort early
when one of its write system calls is interrupted (EINTR).