##// END OF EJS Templates
parsers: alias long to int on Python 3
Pulkit Goyal -
r31220:37596c98 default
parent child Browse files
Show More
@@ -14,6 +14,9 b' from .node import nullid'
14 14 from . import pycompat
15 15 stringio = pycompat.stringio
16 16
17 if pycompat.ispy3:
18 long = int
19
17 20 _pack = struct.pack
18 21 _unpack = struct.unpack
19 22 _compress = zlib.compress
General Comments 0
You need to be logged in to leave comments. Login now