##// END OF EJS Templates
pure: use int instead of long...
Martin von Zweigbergk -
r31529:61ff3852 default
parent child Browse files
Show More
@@ -14,8 +14,6 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 18 _pack = struct.pack
21 19 _unpack = struct.unpack
@@ -37,7 +35,7 b' def gettype(q):'
37 35 return int(q & 0xFFFF)
38 36
39 37 def offset_type(offset, type):
40 return long(long(offset) << 16 | type)
38 return int(int(offset) << 16 | type)
41 39
42 40 class BaseIndexObject(object):
43 41 def __len__(self):
General Comments 0
You need to be logged in to leave comments. Login now