Mercurial > hg-stable
changeset 15417:5261140d9322
phases: Minimal first add.
author | Pierre-Yves David <pierre-yves.david@ens-lyon.org> |
---|---|
date | Thu, 03 Nov 2011 23:49:14 +0100 |
parents | 3b7c4f96885c |
children | cf729af26963 |
files | mercurial/phases.py |
diffstat | 1 files changed, 11 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /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 <pierre-yves.david@ens-lyon.org> +# Logilab SA <contact@logilab.fr> +# Augie Fackler <durin42@gmail.com> +# +# 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:]