Home
last modified time | relevance | path

Searched refs:pass_fds (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython3/Lib/test/eintrdata/
Deintr_tester.py137 proc = self.subprocess(code, str(wr), pass_fds=[wr])
174 proc = self.subprocess(code, str(rd), pass_fds=[rd])
216 proc = self.subprocess(code, str(fd), pass_fds=[fd])
266 proc = self.subprocess(code, str(fd), pass_fds=[fd])
/external/python/cpython3/Lib/test/
Dtest_faulthandler.py68 pass_fds = []
70 pass_fds.append(fd)
72 process = script_helper.spawn_python('-c', code, pass_fds=pass_fds)
Dtest_subprocess.py2685 pass_fds=fds_to_keep)
2794 pass_fds=(fd, ))
2808 close_fds=False, pass_fds=(fd, )))
2819 pass_fds = (inheritable, non_inheritable)
2821 args += list(map(str, pass_fds))
2825 pass_fds=pass_fds)
2831 self.assertEqual(fds, set(pass_fds), "output=%a" % output)
2844 pass_fds = []
2848 pass_fds.append(fd)
2853 pass_fds.insert(1, stdout_w)
[all …]
D_test_multiprocessing.py5124 pass_fds=[w],
/external/python/cpython3/Lib/
Dsubprocess.py758 pass_fds=(), *, user=None, group=None, extra_groups=None, argument
782 if pass_fds and not close_fds:
948 pass_fds, cwd, env,
1331 pass_fds, cwd, env, argument
1342 assert not pass_fds, "pass_fds not supported on Windows."
1660 pass_fds, cwd, env, argument
1697 and not pass_fds
1750 fds_to_keep = set(pass_fds)
/external/python/cpython3/Doc/library/
Dsubprocess.rst342 start_new_session=False, pass_fds=(), \*, group=None, \
518 *pass_fds* is an optional sequence of file descriptors to keep open
519 between the parent and child. Providing any *pass_fds* forces
523 The *pass_fds* parameter was added.
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_streams.py763 pass_fds={wfd},
/external/python/cpython3/Doc/whatsnew/
D3.8.rst1459 * *preexec_fn*, *pass_fds*, *cwd* and *start_new_session* parameters
/external/python/cpython3/Misc/NEWS.d/
D3.8.0a1.rst3265 they were in pass_fds when outside of the default {0, 1, 2} set.
/external/python/cpython3/Misc/
DHISTORY11145 - Issue #6559: subprocess.Popen has a new pass_fds parameter (actually