We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec401e4 commit 3cb5e17Copy full SHA for 3cb5e17
git/cmd.py
@@ -12,6 +12,7 @@
12
import threading
13
import errno
14
import mmap
15
+import warnings
16
17
from contextlib import contextmanager
18
from subprocess import (
@@ -309,6 +310,7 @@ def __getattr__(self, attr):
309
310
def wait(self):
311
"""Wait for the process and return its status code.
312
313
+ :warn: may deadlock if output or error pipes are used and not handled separately.
314
:raise GitCommandError: if the return status is not 0"""
315
status = self.proc.wait()
316
if status != 0:
0 commit comments