Home | History | Annotate | Download | only in Lib

Lines Matching full:close_fds

559       close_fds: Controls closing or inheriting of file descriptors.
588 preexec_fn=None, close_fds=_PLATFORM_DEFAULT_CLOSE_FDS,
615 if close_fds is _PLATFORM_DEFAULT_CLOSE_FDS:
617 close_fds = False
619 close_fds = True
620 elif close_fds and any_stdio_set:
622 "close_fds is not supported on Windows platforms"
626 if close_fds is _PLATFORM_DEFAULT_CLOSE_FDS:
627 close_fds = True
628 if pass_fds and not close_fds:
629 warnings.warn("pass_fds overriding close_fds.", RuntimeWarning)
630 close_fds = True
701 self._execute_child(args, executable, preexec_fn, close_fds,
952 def _execute_child(self, args, executable, preexec_fn, close_fds,
986 int(not close_fds),
1198 def _execute_child(self, args, executable, preexec_fn, close_fds,
1256 close_fds, sorted(fds_to_keep), cwd, env_list,