diff options
author | Richard Oudkerk <shibturn@gmail.com> | 2013-02-26 12:39:57 +0000 |
---|---|---|
committer | Richard Oudkerk <shibturn@gmail.com> | 2013-02-26 12:39:57 +0000 |
commit | 7aaa1ef8580660eb6ba94a48ffaf76acbc75a8a6 (patch) | |
tree | 8a83c0c8bc3dc06f1458075af2aa1795409d95ff /Misc | |
parent | Fix issue16932: Fix the urlparse example. Remote :port when scheme is not spe... (diff) | |
download | cpython-7aaa1ef8580660eb6ba94a48ffaf76acbc75a8a6.tar.gz cpython-7aaa1ef8580660eb6ba94a48ffaf76acbc75a8a6.tar.bz2 cpython-7aaa1ef8580660eb6ba94a48ffaf76acbc75a8a6.zip |
Issue #17018: Make Process.join() retry if os.waitpid() fails with EINTR.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS index eb30662d8d3..3cd2a815f27 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -230,6 +230,8 @@ Core and Builtins Library ------- +- Issue #17018: Make Process.join() retry if os.waitpid() fails with EINTR. + - Issue #14720: sqlite3: Convert datetime microseconds correctly. Patch by Lowe Thiderman. |