D416: revset: mark evolution-related revsets as experimental

lothiraldan (Boris Feld) phabricator at mercurial-scm.org
Wed Aug 16 14:58:09 EDT 2017


This revision was automatically updated to reflect the committed changes.
Closed by commit rHG457d1ebf151b: revset: mark evolution-related revsets as experimental (authored by lothiraldan).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D416?vs=987&id=1006

REVISION DETAIL
  https://phab.mercurial-scm.org/D416

AFFECTED FILES
  mercurial/revset.py

CHANGE DETAILS

diff --git a/mercurial/revset.py b/mercurial/revset.py
--- a/mercurial/revset.py
+++ b/mercurial/revset.py
@@ -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"))



To: lothiraldan, #hg-reviewers, durin42
Cc: mercurial-devel


More information about the Mercurial-devel mailing list