##// END OF EJS Templates
py3: alias long to int on Python 3
Pulkit Goyal -
r32126:e37fd5be default
parent child Browse files
Show More
@@ -16,6 +16,7 b' from . import ('
16 encoding,
16 encoding,
17 hbisect,
17 hbisect,
18 node,
18 node,
19 pycompat,
19 registrar,
20 registrar,
20 templatekw,
21 templatekw,
21 util,
22 util,
@@ -24,6 +25,9 b' from . import ('
24 urlerr = util.urlerr
25 urlerr = util.urlerr
25 urlreq = util.urlreq
26 urlreq = util.urlreq
26
27
28 if pycompat.ispy3:
29 long = int
30
27 # filters are callables like:
31 # filters are callables like:
28 # fn(obj)
32 # fn(obj)
29 # with:
33 # with:
General Comments 0
You need to be logged in to leave comments. Login now