bpo-32844: Fix a subprocess misredirection of a low fd (GH5689)
bpo-32844: subprocess: Fix a potential misredirection of a low fd to stderr. When redirecting, subprocess attempts to achieve the following state: each fd to be redirected to is less than or equal to the fd it is redirected from, which is necessary because redirection occurs in the ascending order of destination descriptors. It fails to do so in a couple of corner cases, for example, if 1 is redirected to 2 and 0 is closed in the parent.
A
Alexey Izbyshev committed
0e7144b064a19493a146af94175a087b3888c37b
Parent: de7a2f0
Committed by Gregory P. Smith <greg@krypto.org>
on 3/26/2018, 7:49:35 PM