Submitter | phabricator |
---|---|
Date | March 2, 2022, 11:31 p.m. |
Message ID | <differential-rev-PHID-DREV-3jjytw5z4ibwsui3k6bo-req@mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/50639/ |
State | New |
Headers | show |
Comments
Patch
diff --git a/mercurial/windows.py b/mercurial/windows.py --- a/mercurial/windows.py +++ b/mercurial/windows.py @@ -162,8 +162,7 @@ # PyFile_FromFd() ignores the name, and seems to report fp.name as the # underlying file descriptor. - if pycompat.ispy3: - fp = fdproxy(name, fp) + fp = fdproxy(name, fp) # The position when opening in append mode is implementation defined, so # make it consistent with other platforms, which position at EOF.