revset: mark `obsolete()` experimental
authorMatt Harbison <matt_harbison@yahoo.com>
Mon, 13 Apr 2020 12:13:22 -0400
changeset 44698 1ac74f653fa5
parent 44697 0792ad55e533
child 44699 bcc1846e0f2b
revset: mark `obsolete()` experimental I assume not marking it was unintentional, since the obsolete concept it still experimental. Differential Revision: https://phab.mercurial-scm.org/D8405
mercurial/revset.py
--- a/mercurial/revset.py	Tue Apr 14 16:09:38 2020 +0200
+++ b/mercurial/revset.py	Mon Apr 13 12:13:22 2020 -0400
@@ -1702,7 +1702,7 @@
 
 @predicate(b'obsolete()', safe=True)
 def obsolete(repo, subset, x):
-    """Mutable changeset with a newer version."""
+    """Mutable changeset with a newer version. (EXPERIMENTAL)"""
     # i18n: "obsolete" is a keyword
     getargs(x, 0, 0, _(b"obsolete takes no arguments"))
     obsoletes = obsmod.getrevs(repo, b'obsolete')