summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-05-31 23:03:00 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-05-31 23:03:00 (GMT)
commit776e69b5b37a9f0678f2759c145ed26368aaba3f (patch)
tree2f26816a6d993a0eb1afe7fc64a87674ab425860 /Misc
parentd9f5292443eb3da4c56a877b7096ad001ee5d848 (diff)
downloadcpython-776e69b5b37a9f0678f2759c145ed26368aaba3f.zip
cpython-776e69b5b37a9f0678f2759c145ed26368aaba3f.tar.gz
cpython-776e69b5b37a9f0678f2759c145ed26368aaba3f.tar.bz2
Close #12085: Fix an attribute error in subprocess.Popen destructor if the
constructor has failed, e.g. because of an undeclared keyword argument. Patch written by Oleg Oshmyan.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 0066b32..4677448 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -607,6 +607,7 @@ Piet van Oostrum
Jason Orendorff
Douglas Orr
Michele OrrĂ¹
+Oleg Oshmyan
Denis S. Otkidach
Michael Otteneder
R. M. Oudkerk
diff --git a/Misc/NEWS b/Misc/NEWS
index 517a6e5..f6ecd22 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -16,6 +16,10 @@ Core and Builtins
Library
-------
+- Issue #12085: Fix an attribute error in subprocess.Popen destructor if the
+ constructor has failed, e.g. because of an undeclared keyword argument. Patch
+ written by Oleg Oshmyan.
+
Tests
-----