42 lines
1.2 KiB
Diff
42 lines
1.2 KiB
Diff
|
|
--- a/Lib/subprocess.py
|
||
|
|
+++ b/Lib/subprocess.py
|
||
|
|
@@ -491,6 +491,38 @@ def _eintr_retry_call(func, *args):
|
||
|
|
raise
|
||
|
|
|
||
|
|
|
||
|
|
+# XXX This function is only used by multiprocessing and the test suite,
|
||
|
|
+# but it's here so that it can be imported when Python is compiled without
|
||
|
|
+# threads.
|
||
|
|
+
|
||
|
|
+def _args_from_interpreter_flags():
|
||
|
|
+ """Return a list of command-line arguments reproducing the current
|
||
|
|
+ settings in sys.flags and sys.warnoptions."""
|
||
|
|
+ flag_opt_map = {
|
||
|
|
+ 'debug': 'd',
|
||
|
|
+ # 'inspect': 'i',
|
||
|
|
+ # 'interactive': 'i',
|
||
|
|
+ 'optimize': 'O',
|
||
|
|
+ 'dont_write_bytecode': 'B',
|
||
|
|
+ 'no_user_site': 's',
|
||
|
|
+ 'no_site': 'S',
|
||
|
|
+ 'ignore_environment': 'E',
|
||
|
|
+ 'verbose': 'v',
|
||
|
|
+ 'bytes_warning': 'b',
|
||
|
|
+ 'py3k_warning': '3',
|
||
|
|
+ }
|
||
|
|
+ args = []
|
||
|
|
+ for flag, opt in flag_opt_map.items():
|
||
|
|
+ v = getattr(sys.flags, flag)
|
||
|
|
+ if v > 0:
|
||
|
|
+ args.append('-' + opt * v)
|
||
|
|
+ if getattr(sys.flags, 'hash_randomization') != 0:
|
||
|
|
+ args.append('-R')
|
||
|
|
+ for opt in sys.warnoptions:
|
||
|
|
+ args.append('-W' + opt)
|
||
|
|
+ return args
|
||
|
|
+
|
||
|
|
+
|
||
|
|
def call(*popenargs, **kwargs):
|
||
|
|
"""Run command with arguments. Wait for command to complete, then
|
||
|
|
return the returncode attribute.
|