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
--- 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')