##// END OF EJS Templates
py3: use '//' for integer division in tests/test-mq-qimport.t...
Pulkit Goyal -
r37541:d17cfb23 default
parent child Browse files
Show More
@@ -7,7 +7,7 b''
7 > assert (len(args) % 2) == 0
7 > assert (len(args) % 2) == 0
8 >
8 >
9 > f = open(path, 'wb')
9 > f = open(path, 'wb')
10 > for i in range(len(args)/2):
10 > for i in range(len(args)//2):
11 > count, s = args[2*i:2*i+2]
11 > count, s = args[2*i:2*i+2]
12 > count = int(count)
12 > count = int(count)
13 > s = s.decode('string_escape')
13 > s = s.decode('string_escape')
General Comments 0
You need to be logged in to leave comments. Login now