diff options
author | Richard Oudkerk <shibturn@gmail.com> | 2012-05-18 13:28:02 (GMT) |
---|---|---|
committer | Richard Oudkerk <shibturn@gmail.com> | 2012-05-18 13:28:02 (GMT) |
commit | 77c84f2defb0013e28d262be237142379a1407fe (patch) | |
tree | 16065331749bd8218eb74d80c9f10b54a816c0c5 /Lib/multiprocessing/util.py | |
parent | cca802e354f776e79a55b3bc7dded6340b244824 (diff) | |
download | cpython-77c84f2defb0013e28d262be237142379a1407fe.zip cpython-77c84f2defb0013e28d262be237142379a1407fe.tar.gz cpython-77c84f2defb0013e28d262be237142379a1407fe.tar.bz2 |
#12098: Make multiprocessing's child processes inherit sys.flags on Windows
Initial patch by Sergey Mezentsev.
Diffstat (limited to 'Lib/multiprocessing/util.py')
-rw-r--r-- | Lib/multiprocessing/util.py | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Lib/multiprocessing/util.py b/Lib/multiprocessing/util.py index 9b6dac2..7c71081 100644 --- a/Lib/multiprocessing/util.py +++ b/Lib/multiprocessing/util.py @@ -7,6 +7,7 @@ # Licensed to PSF under a Contributor Agreement. # +import sys import functools import itertools import weakref @@ -295,3 +296,33 @@ class ForkAwareLocal(threading.local): register_after_fork(self, lambda obj : obj.__dict__.clear()) def __reduce__(self): return type(self), () + +# +# Get options for python to produce the same sys.flags +# + +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', + 'quiet': 'q', + 'hash_randomization': 'R', + } + args = [] + for flag, opt in flag_opt_map.items(): + v = getattr(sys.flags, flag) + if v > 0: + args.append('-' + opt * v) + for opt in sys.warnoptions: + args.append('-W' + opt) + return args |