D7468: phases: make `allphases` a list on py3 also

mharbison72 (Matt Harbison) phabricator at mercurial-scm.org
Fri Nov 22 02:51:11 UTC 2019


Closed by commit rHGd18cf63e1dbd: phases: make `allphases` a list on py3 also (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/D7468?vs=18266&id=18272

CHANGES SINCE LAST ACTION
  https://phab.mercurial-scm.org/D7468/new/

REVISION DETAIL
  https://phab.mercurial-scm.org/D7468

AFFECTED FILES
  mercurial/phases.py

CHANGE DETAILS

diff --git a/mercurial/phases.py b/mercurial/phases.py
--- a/mercurial/phases.py
+++ b/mercurial/phases.py
@@ -134,7 +134,7 @@
 public, draft, secret = range(3)
 internal = INTERNAL_FLAG | HIDEABLE_FLAG
 archived = HIDEABLE_FLAG
-allphases = range(internal + 1)
+allphases = list(range(internal + 1))
 trackedphases = allphases[1:]
 # record phase names
 cmdphasenames = [b'public', b'draft', b'secret']  # known to `hg phase` command



To: mharbison72, #hg-reviewers, indygreg
Cc: mercurial-devel


More information about the Mercurial-devel mailing list