mercurial/revset.py
changeset 15146 b39d85be78a8
parent 15140 353a1ba928f6
child 15147 395ca8cd2669
equal deleted inserted replaced
15145:ff26712a0c50 15146:b39d85be78a8
   239     """``bisect(string)``
   239     """``bisect(string)``
   240     Changesets marked in the specified bisect status (``good``, ``bad``,
   240     Changesets marked in the specified bisect status (``good``, ``bad``,
   241     ``skip``), or any of the meta-status:
   241     ``skip``), or any of the meta-status:
   242 
   242 
   243     - ``range``      : all csets taking part in the bisection
   243     - ``range``      : all csets taking part in the bisection
   244     - ``pruned``     : good|bad|skip, excluding out-of-range csets
   244     - ``pruned``     : csets that are good, bad or skipped
   245     - ``untested``   : csets whose fate is yet unknown
   245     - ``untested``   : csets whose fate is yet unknown
   246     """
   246     """
   247     status = getstring(x, _("bisect requires a string")).lower()
   247     status = getstring(x, _("bisect requires a string")).lower()
   248     return [r for r in subset if r in hbisect.get(repo, status)]
   248     return [r for r in subset if r in hbisect.get(repo, status)]
   249 
   249