##// END OF EJS Templates
py3: use '//' for integer divisions...
Pulkit Goyal -
r36408:34afe92e default
parent child Browse files
Show More
@@ -10,7 +10,7 b' future qrefresh.'
10 > assert (len(args) % 2) == 0
10 > assert (len(args) % 2) == 0
11 >
11 >
12 > f = open(path, 'wb')
12 > f = open(path, 'wb')
13 > for i in range(len(args)/2):
13 > for i in range(len(args) // 2):
14 > count, s = args[2*i:2*i+2]
14 > count, s = args[2*i:2*i+2]
15 > count = int(count)
15 > count = int(count)
16 > s = s.decode('string_escape')
16 > s = s.decode('string_escape')
General Comments 0
You need to be logged in to leave comments. Login now