diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-31 22:57:47 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-31 22:57:47 (GMT) |
commit | 87b9bc3893bac402bd773a83ee6734507f978607 (patch) | |
tree | 11a077f4d4f36f6bbb7b5d2661c4d326e24cc8df /Misc | |
parent | ee49797c8dacb886d58804e59f6431ea6f842be2 (diff) | |
download | cpython-87b9bc3893bac402bd773a83ee6734507f978607.zip cpython-87b9bc3893bac402bd773a83ee6734507f978607.tar.gz cpython-87b9bc3893bac402bd773a83ee6734507f978607.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/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 4 |
2 files changed, 5 insertions, 0 deletions
@@ -650,6 +650,7 @@ Piet van Oostrum Jason Orendorff Douglas Orr Michele OrrĂ¹ +Oleg Oshmyan Denis S. Otkidach Michael Otteneder R. M. Oudkerk @@ -22,6 +22,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. + - Issue #985064: Make plistlib more resilient to faulty input plists. Patch by Mher Movsisyan. |