D8405: revset: mark `obsolete()` experimental
mharbison72 (Matt Harbison)
phabricator at mercurial-scm.org
Tue Apr 14 19:18:30 UTC 2020
Closed by commit rHG1ac74f653fa5: revset: mark `obsolete()` experimental (authored by mharbison72).
This revision was automatically updated to reflect the committed changes.
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D8405?vs=21044&id=21077
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D8405/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D8405
AFFECTED FILES
mercurial/revset.py
CHANGE DETAILS
diff --git a/mercurial/revset.py b/mercurial/revset.py
--- a/mercurial/revset.py
+++ b/mercurial/revset.py
@@ -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')
To: mharbison72, #hg-reviewers, Alphare, pulkit
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list