equal
deleted
inserted
replaced
5 |
5 |
6 if subprocess.call(['python', '%s/hghave' % os.environ['TESTDIR'], |
6 if subprocess.call(['python', '%s/hghave' % os.environ['TESTDIR'], |
7 'cacheable']): |
7 'cacheable']): |
8 sys.exit(80) |
8 sys.exit(80) |
9 |
9 |
10 from mercurial import util, scmutil, extensions, hg, ui |
10 from mercurial import ( |
|
11 extensions, |
|
12 hg, |
|
13 scmutil, |
|
14 ui, |
|
15 util, |
|
16 ) |
11 |
17 |
12 filecache = scmutil.filecache |
18 filecache = scmutil.filecache |
13 |
19 |
14 class fakerepo(object): |
20 class fakerepo(object): |
15 def __init__(self): |
21 def __init__(self): |