Mercurial > hg-stable
changeset 44698:1ac74f653fa5
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
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Mon, 13 Apr 2020 12:13:22 -0400 |
parents | 0792ad55e533 |
children | bcc1846e0f2b |
files | mercurial/revset.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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')