##// END OF EJS Templates
py3: use pycompat.xrange instead of xrange...
Pulkit Goyal -
r40780:ba706e30 default
parent child Browse files
Show More
@@ -251,7 +251,7 b' class histpacktests(unittest.TestCase):'
251 This causes it to use a 2^16 fanout table instead."""
251 This causes it to use a 2^16 fanout table instead."""
252 total = basepack.SMALLFANOUTCUTOFF + 1
252 total = basepack.SMALLFANOUTCUTOFF + 1
253 revisions = []
253 revisions = []
254 for i in xrange(total):
254 for i in pycompat.xrange(total):
255 filename = b"foo-%d" % i
255 filename = b"foo-%d" % i
256 node = self.getFakeHash()
256 node = self.getFakeHash()
257 p1 = self.getFakeHash()
257 p1 = self.getFakeHash()
General Comments 0
You need to be logged in to leave comments. Login now