# HG changeset patch # User Boris Feld # Date 1502894921 -7200 # Node ID 457d1ebf151bc835dbee84668689dd014fb62a47 # Parent f6dc30b8343260a0ae43314f90ec6d5838c3d598 revset: mark evolution-related revsets as experimental Differential Revision: https://phab.mercurial-scm.org/D416 diff -r f6dc30b83432 -r 457d1ebf151b mercurial/revset.py --- a/mercurial/revset.py Tue Aug 15 17:22:57 2017 -0700 +++ b/mercurial/revset.py Wed Aug 16 16:48:41 2017 +0200 @@ -470,6 +470,7 @@ """Mutable changesets marked as successors of public changesets. Only non-public and non-obsolete changesets can be `phasedivergent`. + (EXPERIMENTAL) """ # i18n: "phasedivergent" is a keyword getargs(x, 0, 0, _("phasedivergent takes no arguments")) @@ -728,7 +729,8 @@ @predicate('contentdivergent()', safe=True) def contentdivergent(repo, subset, x): """ - Final successors of changesets with an alternative set of final successors. + Final successors of changesets with an alternative set of final + successors. (EXPERIMENTAL) """ # i18n: "contentdivergent" is a keyword getargs(x, 0, 0, _("contentdivergent takes no arguments")) @@ -1943,7 +1945,7 @@ @predicate('orphan()', safe=True) def orphan(repo, subset, x): - """Non-obsolete changesets with obsolete ancestors. + """Non-obsolete changesets with obsolete ancestors. (EXPERIMENTAL) """ # i18n: "orphan" is a keyword getargs(x, 0, 0, _("orphan takes no arguments"))