summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReid Kleckner <reid@kleckner.net>2011-04-11 02:23:08 (GMT)
committerReid Kleckner <reid@kleckner.net>2011-04-11 02:23:08 (GMT)
commit98707c2cede1aa697a1338ea8f7c9a59da42dfe9 (patch)
tree63dc1852cbd5fe5394dcdf3c4e71ff5ec2f895f9
parentd60b74cb6659122d072d3bdd3951f162632d51f0 (diff)
downloadcpython-98707c2cede1aa697a1338ea8f7c9a59da42dfe9.zip
cpython-98707c2cede1aa697a1338ea8f7c9a59da42dfe9.tar.gz
cpython-98707c2cede1aa697a1338ea8f7c9a59da42dfe9.tar.bz2
Add Misc/NEWS "What's New" entry for subprocess timeouts.
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 545307a..8df6f4b 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.