##// END OF EJS Templates
regression: missing arg from 24ce8f0c0a39 dirstate.{walk,status} changes
Benoit Boissinot -
r10493:283f3b41 stable
parent child Browse files
Show More
@@ -42,7 +42,7 b' def perfwalk(ui, repo, *pats):'
42
42
43 def perfstatus(ui, repo, *pats):
43 def perfstatus(ui, repo, *pats):
44 #m = match.always(repo.root, repo.getcwd())
44 #m = match.always(repo.root, repo.getcwd())
45 #timer(lambda: sum(map(len, repo.dirstate.status(m, False, False, False))))
45 #timer(lambda: sum(map(len, repo.dirstate.status(m, [], False, False, False))))
46 timer(lambda: sum(map(len, repo.status())))
46 timer(lambda: sum(map(len, repo.status())))
47
47
48 def perfheads(ui, repo):
48 def perfheads(ui, repo):
@@ -58,7 +58,7 b' def reposetup(ui, repo):'
58 else:
58 else:
59 if ui.config('inotify', 'debug'):
59 if ui.config('inotify', 'debug'):
60 r2 = super(inotifydirstate, self).status(
60 r2 = super(inotifydirstate, self).status(
61 match, False, clean, unknown)
61 match, [], False, clean, unknown)
62 for c, a, b in zip('LMARDUIC', result, r2):
62 for c, a, b in zip('LMARDUIC', result, r2):
63 for f in a:
63 for f in a:
64 if f not in b:
64 if f not in b:
General Comments 0
You need to be logged in to leave comments. Login now