##// END OF EJS Templates
bisect: faster merging
Matt Mackall -
r5774:c850a864 default
parent child Browse files
Show More
@@ -84,9 +84,7 b' def _bisect(changelog, state):'
84
84
85 for c in children.get(rev, []):
85 for c in children.get(rev, []):
86 if ancestors[c]:
86 if ancestors[c]:
87 s = dict.fromkeys(ancestors[c])
87 ancestors[c] = dict.fromkeys(ancestors[c] + a).keys()
88 s.update(dict.fromkeys(a))
89 ancestors[c] = s.keys()
90 else:
88 else:
91 ancestors[c] = a + [c]
89 ancestors[c] = a + [c]
92
90
General Comments 0
You need to be logged in to leave comments. Login now