[issue6559] add pass_fds paramter to subprocess.Popen()

2019-09-20 Thread miss-islington
miss-islington added the comment: New changeset 77abf23c67c1a465a8899666c69f6bcd6930e003 by Miss Islington (bot) (Orivej Desh) in branch 'master': bpo-6559: Update _posixsubprocess.fork_exec doc (GH-16283) https://github.com/python/cpython/commit/77abf23c67c1a465a8899666c69f6bcd6930e003

[issue6559] add pass_fds paramter to subprocess.Popen()

2019-09-19 Thread Orivej Desh
Change by Orivej Desh : -- pull_requests: +15868 pull_request: https://github.com/python/cpython/pull/16283 ___ Python tracker ___

[issue6559] add pass_fds paramter to subprocess.Popen()

2012-10-14 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: _posixsubprocess.fork_exec docstring was not updated. -- nosy: +serhiy.storchaka ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6559 ___

[issue6559] add pass_fds paramter to subprocess.Popen()

2012-01-16 Thread Ferringb
Ferringb ferri...@gmail.com added the comment: Just noticed this patch... aside from liking the intention, the api for this is going to grow tiresome quick since it expects the FDs to already be in place; is there any reasons a mapping wasn't used here, specifically of (src_fd|src_fileobj) -

[issue6559] add pass_fds paramter to subprocess.Popen()

2012-01-16 Thread Gregory P. Smith
Gregory P. Smith g...@krypto.org added the comment: Wasn't thought about. I have seen something similar to that done in another c++ subprocess implementation since. If you have suggestions for a more useful API, feel free to propose them in a new issue. --

[issue6559] add pass_fds paramter to subprocess.Popen()

2010-12-14 Thread Gregory P. Smith
Gregory P. Smith g...@krypto.org added the comment: Bug fix, unittest and documentation added in r87229. Thanks! -- resolution: - accepted status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6559

[issue6559] add pass_fds paramter to subprocess.Popen()

2010-12-14 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: It seems there are (intermittent?) test failures: == FAIL: test_pass_fds (test.test_subprocess.POSIXProcessTestCase)

[issue6559] add pass_fds paramter to subprocess.Popen()

2010-12-13 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- title: [PATCH]add pass_fds paramter to subprocess.Popen() - add pass_fds paramter to subprocess.Popen() type: - feature request ___ Python tracker rep...@bugs.python.org