Loading python/scripts/stub_template_host.txt +3 −1 Original line number Diff line number Diff line Loading @@ -81,7 +81,9 @@ def Main(): os.environ.update(new_env) sys.stdout.flush() retCode = subprocess.call(args) # close_fds=False so that you can run binaries with files provided on the command line: # my_python_app --file <(echo foo) retCode = subprocess.call(args, close_fds=False) sys.exit(retCode) except: raise Loading Loading
python/scripts/stub_template_host.txt +3 −1 Original line number Diff line number Diff line Loading @@ -81,7 +81,9 @@ def Main(): os.environ.update(new_env) sys.stdout.flush() retCode = subprocess.call(args) # close_fds=False so that you can run binaries with files provided on the command line: # my_python_app --file <(echo foo) retCode = subprocess.call(args, close_fds=False) sys.exit(retCode) except: raise Loading