summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrian Curtin <brian.curtin@gmail.com>2010-12-03 02:46:02 (GMT)
committerBrian Curtin <brian.curtin@gmail.com>2010-12-03 02:46:02 (GMT)
commit79cdb661f5a6cf8bba07aa50f4451f6c409bb067 (patch)
tree951cc547f5023ab2965b790fe01617e19952d3cf /Misc
parent2d93e6ee637f3ec62114919835a32ed009b99a0b (diff)
downloadcpython-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/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e856c6d..434ed23 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.