summaryrefslogtreecommitdiff
path: root/git/cmd.py
diff options
context:
space:
mode:
authorsroet <sanderroet@hotmail.com>2021-09-10 17:28:00 +0200
committerSebastian Thiel <sebastian.thiel@icloud.com>2021-09-18 09:26:28 +0800
commitb7cd5207ba05c733d8e29def0757edf4d7cc24f7 (patch)
tree044eb26af59eada04349cff3dd020b90163ca17b /git/cmd.py
parentd6cdafe223fe2e4ec17c52d4bd5ad7affc599814 (diff)
downloadgitpython-b7cd5207ba05c733d8e29def0757edf4d7cc24f7.tar.gz
update docstring
Diffstat (limited to 'git/cmd.py')
-rw-r--r--git/cmd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/cmd.py b/git/cmd.py
index 0deb4ffc..f1b3194a 100644
--- a/git/cmd.py
+++ b/git/cmd.py
@@ -94,7 +94,7 @@ def handle_process_output(process: 'Git.AutoInterrupt' | Popen,
their contents to handlers.
Set it to False if `universal_newline == True` (then streams are in text-mode)
or if decoding must happen later (i.e. for Diffs).
- :param timeout: float, timeout to pass to t.join() in case it hangs. Default = 10.0 seconds
+ :param timeout: float, or None timeout to pass to t.join() in case it hangs. Default = None.
"""
# Use 2 "pump" threads and wait for both to finish.
def pump_stream(cmdline: List[str], name: str, stream: Union[BinaryIO, TextIO], is_decode: bool,