diff options
author | Gregory P. Smith <greg@krypto.org> | 2013-03-03 18:45:05 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2013-03-03 18:45:05 (GMT) |
commit | 255bf5b9ec2d25698240cc1bf760887cd3c28436 (patch) | |
tree | b5a631d3db639885fafef297f435a36e206364e5 /Misc | |
parent | bce9a5d5cd783e116fe404c438cb08fc391be111 (diff) | |
download | cpython-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/NEWS | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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). |