##// END OF EJS Templates
dirstate: avoid use of zip on big lists...
Bryan O'Sullivan -
r18018:0fed3fe4 default
parent child Browse files
Show More
@@ -696,8 +696,9 b' class dirstate(object):'
696 # step 3: report unseen items in the dmap hash
696 # step 3: report unseen items in the dmap hash
697 if not skipstep3 and not exact:
697 if not skipstep3 and not exact:
698 visit = sorted([f for f in dmap if f not in results and matchfn(f)])
698 visit = sorted([f for f in dmap if f not in results and matchfn(f)])
699 for nf, st in zip(visit, util.statfiles([join(i) for i in visit])):
699 nf = iter(visit).next
700 results[nf] = st
700 for st in util.statfiles([join(i) for i in visit]):
701 results[nf()] = st
701 for s in subrepos:
702 for s in subrepos:
702 del results[s]
703 del results[s]
703 del results['.hg']
704 del results['.hg']
General Comments 0
You need to be logged in to leave comments. Login now