Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
D_posixsubprocess.c406 int close_fds, int restore_signals, in child_exec() argument
477 if (restore_signals) in child_exec()
565 int errpipe_read, errpipe_write, close_fds, restore_signals; in subprocess_fork_exec() local
583 &restore_signals, &call_setsid, &preexec_fn)) in subprocess_fork_exec()
706 close_fds, restore_signals, call_setsid, in subprocess_fork_exec()
/external/python/cpython3/Lib/
Dsubprocess.py661 restore_signals=True, start_new_session=False, argument
775 restore_signals, start_new_session)
1389 restore_signals, start_new_session): argument
1453 restore_signals, start_new_session, preexec_fn)
/external/python/cpython3/Doc/library/
Dsubprocess.rst339 startupinfo=None, creationflags=0, restore_signals=True, \
501 If *restore_signals* is true (the default) all signals that Python has set to
507 *restore_signals* was added.
/external/python/cpython3/Lib/test/
Dtest_subprocess.py1626 restore_signals=False)
1635 restore_signals=True)
/external/python/cpython3/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