changeset 48932 | 176f1a0d15dc |
parent 48913 | f254fc73d956 |
child 48942 | bce8f66d3045 |
--- a/mercurial/utils/cborutil.py Mon Feb 21 11:13:37 2022 -0700 +++ b/mercurial/utils/cborutil.py Tue Mar 01 20:50:34 2022 -0800 @@ -9,7 +9,6 @@ import struct import sys -from .. import pycompat # Very short very of RFC 7049... # @@ -207,7 +206,7 @@ STREAM_ENCODERS = { bytes: streamencodebytestring, int: streamencodeint, - pycompat.long: streamencodeint, + int: streamencodeint, list: streamencodearray, tuple: streamencodearray, dict: streamencodemap,