Home
last modified time | relevance | path

Searched refs:restore_signals (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Modules/
D_posixsubprocess.c463 int close_fds, int restore_signals, in child_exec() argument
541 if (restore_signals) in child_exec()
662 int close_fds, int restore_signals, in do_fork_exec() argument
710 close_fds, restore_signals, call_setsid, in do_fork_exec()
730 int errpipe_read, errpipe_write, close_fds, restore_signals; in subprocess_fork_exec() local
752 &restore_signals, &call_setsid, in subprocess_fork_exec()
956 close_fds, restore_signals, call_setsid, in subprocess_fork_exec()
/third_party/python/Lib/
Dsubprocess.py758 restore_signals=True, start_new_session=False, argument
972 restore_signals,
1643 def _posix_spawn(self, args, executable, env, restore_signals, argument
1652 if restore_signals:
1688 restore_signals, argument
1730 self._posix_spawn(args, executable, env, restore_signals,
1782 restore_signals, start_new_session,
/third_party/python/Doc/library/
Dsubprocess.rst341 startupinfo=None, creationflags=0, restore_signals=True, \
559 If *restore_signals* is true (the default) all signals that Python has set to
565 *restore_signals* was added.
/third_party/python/Lib/test/
Dtest_subprocess.py1838 restore_signals=False)
1847 restore_signals=True)
/third_party/python/Misc/
DHISTORY13681 - subprocess.Popen now has restore_signals and start_new_session features. The
13682 default of restore_signals=True is a new behavior compared to earlier Python