Submitter | phabricator |
---|---|
Date | March 2, 2022, 11:31 p.m. |
Message ID | <differential-rev-PHID-DREV-5wpu26htq5oag7kivugq-req@mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/50642/ |
State | New |
Headers | show |
Comments
Patch
diff --git a/mercurial/wireprotoframing.py b/mercurial/wireprotoframing.py --- a/mercurial/wireprotoframing.py +++ b/mercurial/wireprotoframing.py @@ -761,11 +761,6 @@ self._decompressor = zlib.decompressobj() def decode(self, data): - # Python 2's zlib module doesn't use the buffer protocol and can't - # handle all bytes-like types. - if not pycompat.ispy3 and isinstance(data, bytearray): - data = bytes(data) - return self._decompressor.decompress(data)