[issue1227748] doc: subprocess: inheritance of std descriptors inconsistent

2021-04-29 Thread STINNER Victor
Change by STINNER Victor : -- nosy: -vstinner ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue1227748] doc: subprocess: inheritance of std descriptors inconsistent

2021-04-28 Thread Eryk Sun
Eryk Sun added the comment: > If one calls Popen with stdin = stdout = stderr = None, > the caller's std descriptors are inherited on *x, but > not on Windows In the default case, CreateProcessW() is called with bInheritHandles as false and without explicitly setting the standard-handle value

[issue1227748] doc: subprocess: inheritance of std descriptors inconsistent

2021-04-28 Thread Irit Katriel
Irit Katriel added the comment: The patch needs to be converted into a github PR. -- keywords: +easy nosy: +iritkatriel title: subprocess: inheritance of std descriptors inconsistent -> doc: subprocess: inheritance of std descriptors inconsistent versions: +Python 3.10, Python 3.11, P