##// END OF EJS Templates
py3: use range instead of xrange on py3 in tests/test-filecache.py...
Pulkit Goyal -
r36300:daa5f475 default
parent child Browse files
Show More
@@ -11,11 +11,15 b' from mercurial import ('
11 11 extensions,
12 12 hg,
13 13 localrepo,
14 pycompat,
14 15 ui as uimod,
15 16 util,
16 17 vfs as vfsmod,
17 18 )
18 19
20 if pycompat.ispy3:
21 xrange = range
22
19 23 class fakerepo(object):
20 24 def __init__(self):
21 25 self._filecache = {}
General Comments 0
You need to be logged in to leave comments. Login now