comparison mercurial/revset.py @ 33779:9fa874fb34e1

obsolete: rename bumped volatile set into phasedivergent volatile set The renaming is done according to https://www.mercurial-scm.org/wiki/CEDVocabulary. Differential Revision: https://phab.mercurial-scm.org/D255
author Boris Feld <boris.feld@octobus.net>
date Fri, 04 Aug 2017 19:39:34 +0200
parents f3f06c260e9e
children 457d1ebf151b
comparison
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