From: Gregory P. Smith Date: Sun, 1 Dec 2013 03:04:00 +0000 (-0800) Subject: Fixes Issue #15798 - subprocess.Popen() no longer fails if file X-Git-Tag: v3.4.0b2~417 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1c27e3c7fbf8ee33e20677558e7e394a1bdb70d0;p=python Fixes Issue #15798 - subprocess.Popen() no longer fails if file descriptor 0, 1 or 2 is closed. --- 1c27e3c7fbf8ee33e20677558e7e394a1bdb70d0 diff --cc Misc/NEWS index 7bfce3ff77,4742b9b1c7..7308f893e2 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -18,12 -18,9 +18,15 @@@ Core and Builtin Library ------- + - Issue #15798: Fixed subprocess.Popen() to no longer fail if file + descriptor 0, 1 or 2 is closed. + +- Issue #17897: Optimized unpickle prefetching. + +- Issue #3693: Make the error message more helpful when the array.array() + constructor is given a str. Move the array module typecode documentation to + the docstring of the constructor. + - Issue #19088: Fixed incorrect caching of the copyreg module in object.__reduce__() and object.__reduce_ex__().