mercurial/revset.py
changeset 33779 9fa874fb34e1
parent 33778 f3f06c260e9e
child 33855 457d1ebf151b
equal deleted inserted replaced
33778:f3f06c260e9e 33779:9fa874fb34e1
   471 
   471 
   472     Only non-public and non-obsolete changesets can be `phasedivergent`.
   472     Only non-public and non-obsolete changesets can be `phasedivergent`.
   473     """
   473     """
   474     # i18n: "phasedivergent" is a keyword
   474     # i18n: "phasedivergent" is a keyword
   475     getargs(x, 0, 0, _("phasedivergent takes no arguments"))
   475     getargs(x, 0, 0, _("phasedivergent takes no arguments"))
   476     bumped = obsmod.getrevs(repo, 'bumped')
   476     phasedivergent = obsmod.getrevs(repo, 'phasedivergent')
   477     return subset & bumped
   477     return subset & phasedivergent
   478 
   478 
   479 @predicate('bundle()', safe=True)
   479 @predicate('bundle()', safe=True)
   480 def bundle(repo, subset, x):
   480 def bundle(repo, subset, x):
   481     """Changesets in the bundle.
   481     """Changesets in the bundle.
   482 
   482