diff options
author | Reid Kleckner <reid@kleckner.net> | 2011-04-11 02:23:08 (GMT) |
---|---|---|
committer | Reid Kleckner <reid@kleckner.net> | 2011-04-11 02:23:08 (GMT) |
commit | 98707c2cede1aa697a1338ea8f7c9a59da42dfe9 (patch) | |
tree | 63dc1852cbd5fe5394dcdf3c4e71ff5ec2f895f9 /Misc | |
parent | d60b74cb6659122d072d3bdd3951f162632d51f0 (diff) | |
download | cpython-98707c2cede1aa697a1338ea8f7c9a59da42dfe9.zip cpython-98707c2cede1aa697a1338ea8f7c9a59da42dfe9.tar.gz cpython-98707c2cede1aa697a1338ea8f7c9a59da42dfe9.tar.bz2 |
Add Misc/NEWS "What's New" entry for subprocess timeouts.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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. |