From 24d4926fd8479b8a298de84a2bcfdb94709ac619 Mon Sep 17 00:00:00 2001 From: Anson Mansfield Date: Wed, 19 Jul 2017 18:36:17 -0400 Subject: implemented per-call environment variable support --- git/cmd.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'git/cmd.py') diff --git a/git/cmd.py b/git/cmd.py index 3637ac9e..6022180a 100644 --- a/git/cmd.py +++ b/git/cmd.py @@ -46,7 +46,7 @@ from .util import ( execute_kwargs = set(('istream', 'with_extended_output', 'with_exceptions', 'as_process', 'stdout_as_string', 'output_stream', 'with_stdout', 'kill_after_timeout', - 'universal_newlines', 'shell')) + 'universal_newlines', 'shell', 'env')) log = logging.getLogger(__name__) log.addHandler(logging.NullHandler()) @@ -471,6 +471,7 @@ class Git(LazyMixin): with_stdout=True, universal_newlines=False, shell=None, + env=None, **subprocess_kwargs ): """Handles executing the command on the shell and consumes and returns @@ -514,6 +515,9 @@ class Git(LazyMixin): decoded into a string using the default encoding (usually utf-8). The latter can fail, if the output contains binary data. + :param env: + A dictionary of environment variables to be passed to `subprocess.Popen`. + :param subprocess_kwargs: Keyword arguments to be passed to subprocess.Popen. Please note that some of the valid kwargs are already set by this method, the ones you @@ -559,6 +563,7 @@ class Git(LazyMixin): cwd = self._working_dir or os.getcwd() # Start the process + inline_env = env env = os.environ.copy() # Attempt to force all output to plain ascii english, which is what some parsing code # may expect. @@ -567,6 +572,8 @@ class Git(LazyMixin): env["LANGUAGE"] = "C" env["LC_ALL"] = "C" env.update(self._environment) + if inline_env is not None: + env.update(inline_env) if is_win: cmd_not_found_exception = OSError -- cgit v1.2.1