From: Gregory P. Smith Date: Sun, 3 Mar 2013 18:53:27 +0000 (-0800) Subject: Fixes Issue #16962: Use getdents64 instead of the obsolete getdents syscall X-Git-Tag: v3.4.0a1~1287 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b394c1dac8eaf398ed245c7599474b6c4213d03f;p=python Fixes Issue #16962: Use getdents64 instead of the obsolete getdents syscall in the subprocess module on Linux. --- b394c1dac8eaf398ed245c7599474b6c4213d03f diff --cc Misc/NEWS index 0f787d2046,d569813b6a..5bf85eea5b --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -273,14 -191,11 +273,17 @@@ Core and Builtin Library ------- + - Issue #16962: Use getdents64 instead of the obsolete getdents syscall + in the subprocess module on Linux. + +- Issue #16935: unittest now counts the module as skipped if it raises SkipTest, + instead of counting it as an error. Patch by Zachary Ware. + - Issue #17018: Make Process.join() retry if os.waitpid() fails with EINTR. +- Issue #17197: profile/cProfile modules refactored so that code of run() and + runctx() utility functions is not duplicated in both modules. + - Issue #14720: sqlite3: Convert datetime microseconds correctly. Patch by Lowe Thiderman.