# HG changeset patch # User Matt Harbison # Date 2020-04-13 16:13:22 # Node ID 1ac74f653fa55f3e9419b44448c510e51afa94f2 # Parent 0792ad55e5330662574c9223afb1598095af8569 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 diff --git a/mercurial/revset.py b/mercurial/revset.py --- a/mercurial/revset.py +++ b/mercurial/revset.py @@ -1702,7 +1702,7 @@ def none(repo, subset, x): @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')