diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2016-02-25 07:48:12 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2016-02-25 07:48:12 +0100 |
commit | 0f4d5ce5f9459e4c7fe4fab95df1a1e4c9be61ca (patch) | |
tree | 25c209cfcbc42b01622b17479399ddb8a7792996 /git/cmd.py | |
parent | 8e9481b4ddd70cf44ad041fba771ca5c02b84cf7 (diff) | |
parent | 5982ff789e731c1cbd9b05d1c6826adf0cd8080b (diff) | |
download | gitpython-0f4d5ce5f9459e4c7fe4fab95df1a1e4c9be61ca.tar.gz |
Merge pull request #389 from csnover/csnover-buffer-reads
fix(cmd): Use buffered reads
Diffstat (limited to 'git/cmd.py')
-rw-r--r-- | git/cmd.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -605,6 +605,7 @@ class Git(LazyMixin): proc = Popen(command, env=env, cwd=cwd, + bufsize=-1, stdin=istream, stderr=PIPE, stdout=with_stdout and PIPE or None, |