From: Reid Kleckner Date: Mon, 11 Apr 2011 02:23:08 +0000 (-0400) Subject: Add Misc/NEWS "What's New" entry for subprocess timeouts. X-Git-Tag: v3.3.0a1~2623 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=98707c2cede1aa697a1338ea8f7c9a59da42dfe9;p=python Add Misc/NEWS "What's New" entry for subprocess timeouts. --- diff --git a/Misc/NEWS b/Misc/NEWS index 545307a4af..8df6f4b1bc 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,6 +10,11 @@ What's New in Python 3.3 Alpha 1? Core and Builtins ----------------- +- Issue #5673: Added a `timeout` keyword argument to subprocess.Popen.wait, + subprocess.Popen.communicated, subprocess.call, subprocess.check_call, and + subprocess.check_output. If the blocking operation takes more than `timeout` + seconds, the `subprocess.TimeoutExpired` exception is raised. + - Issue #11650: PyOS_StdioReadline() retries fgets() if it was interrupted (EINTR), for example if the program is stopped with CTRL+z on Mac OS X. Patch written by Charles-Francois Natali.