Submitter | Manuel Jacob |
---|---|
Date | July 17, 2020, 2:38 a.m. |
Message ID | <217660a6547cb5db3a53.1594953527@tmp> |
Download | mbox | patch |
Permalink | /patch/46770/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/mercurial/windows.py b/mercurial/windows.py --- a/mercurial/windows.py +++ b/mercurial/windows.py @@ -187,7 +187,13 @@ class winstdout(object): - '''stdout on windows misbehaves if sent through a pipe''' + '''Some files on Windows misbehave. + + When writing to a broken pipe, EINVAL instead of EPIPE may be raised. + + When writing too many bytes to a console at the same, a "Not enough space" + error may happen. Python 3 already works around that. + ''' def __init__(self, fp): self.fp = fp