Mercurial > public > mercurial-scm > hg-stable
diff mercurial/phases.py @ 50421:92f71d40fc1d
revset: include all non-public phases in _notpublic
We forgot up to update this when new phases were added.
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Tue, 07 Mar 2023 04:50:29 +0100 |
parents | 0c70d888a484 |
children | 385a4f8056e5 |
line wrap: on
line diff
--- a/mercurial/phases.py Thu Mar 02 04:11:29 2023 +0100 +++ b/mercurial/phases.py Tue Mar 07 04:50:29 2023 +0100 @@ -154,6 +154,7 @@ internal = 96 # non-continuous for compatibility allphases = (public, draft, secret, archived, internal) trackedphases = (draft, secret, archived, internal) +not_public_phases = trackedphases # record phase names cmdphasenames = [b'public', b'draft', b'secret'] # known to `hg phase` command phasenames = dict(enumerate(cmdphasenames))