diff options
author | Brian Curtin <brian.curtin@gmail.com> | 2010-12-03 02:46:02 (GMT) |
---|---|---|
committer | Brian Curtin <brian.curtin@gmail.com> | 2010-12-03 02:46:02 (GMT) |
commit | 79cdb661f5a6cf8bba07aa50f4451f6c409bb067 (patch) | |
tree | 951cc547f5023ab2965b790fe01617e19952d3cf /Misc | |
parent | 2d93e6ee637f3ec62114919835a32ed009b99a0b (diff) | |
download | cpython-79cdb661f5a6cf8bba07aa50f4451f6c409bb067.zip cpython-79cdb661f5a6cf8bba07aa50f4451f6c409bb067.tar.gz cpython-79cdb661f5a6cf8bba07aa50f4451f6c409bb067.tar.bz2 |
Fix #10554. Added context manager support to Popen objects.
Added a few common Popen uses to the tests like we've done for a few other
instances of adding context managers. Eventually the entire test suite
could be converted to use the context manager format.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -58,6 +58,8 @@ Core and Builtins Library ------- +- Issue #10554: Add context manager support to subprocess.Popen objects. + - Issue #8989: email.utils.make_msgid now has a domain parameter that can override the domain name used in the generated msgid. |