# HG changeset patch # User Matt Harbison # Date 1586794402 14400 # 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 -r 0792ad55e533 -r 1ac74f653fa5 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')