# HG changeset patch # User Pierre-Yves David # Date 1320360554 -3600 # Node ID 5261140d93220d31a207c78bdeb6ebd17ea90df2 # Parent 3b7c4f96885ceec106de5cfd64c1a04c76b65587 phases: Minimal first add. diff -r 3b7c4f96885c -r 5261140d9322 mercurial/phases.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mercurial/phases.py Thu Nov 03 23:49:14 2011 +0100 @@ -0,0 +1,11 @@ +# Mercurial phases support code +# +# Copyright 2011 Pierre-Yves David +# Logilab SA +# Augie Fackler +# +# This software may be used and distributed according to the terms of the +# GNU General Public License version 2 or any later version. + +allphases = range(2) +trackedphases = allphases[1:]