Commit 98707c2c authored by Reid Kleckner's avatar Reid Kleckner

Add Misc/NEWS "What's New" entry for subprocess timeouts.

parent d60b74cb
......@@ -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.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment