# HG changeset patch # User Matt Mackall # Date 1198821339 21600 # Node ID 442c613fd4aad5a7a45dd029f2aa174d745c4fcd # Parent 18fdfafdb3e907dabe5634f12aa90d54ad05b314 bisect: remove stop argument to ancestors function diff -r 18fdfafdb3e9 -r 442c613fd4aa hgext/hbisect.py --- a/hgext/hbisect.py Thu Dec 27 23:55:39 2007 -0600 +++ b/hgext/hbisect.py Thu Dec 27 23:55:39 2007 -0600 @@ -68,12 +68,11 @@ def __ancestors_and_nb_ancestors(self, head, stop=None): """ - if stop is None then ancestors of goodrevs are used as - lower limit. - returns (anc, n_child) where anc is the set of the ancestors of head and n_child is a dictionary with the following mapping: node -> number of ancestors (self included) + + ancestors of goodrevs are used as lower limit. """ cl = self.repo.changelog if not stop: