# HG changeset patch # User Pierre-Yves David # Date 1355924613 -3600 # Node ID bcee63733aad05778279f784a70937f6f9012b69 # Parent 6db318a15a128a831e96f1c0c424e6cf8df47721 branchmap: create a mercurial.branchmap module This is the foundation stone for an extraction of branches map logic from local repository class. Most of the branches map logic have very few caller and therefor does not fit in the current criteria for code held by the localrepo class. Important change will be made to this code in relation with revision filtering. So we extract it in a dedicated module before adding additional complexity. Follow up commit do the actual code movement. diff -r 6db318a15a12 -r bcee63733aad mercurial/branchmap.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mercurial/branchmap.py Wed Dec 19 14:43:33 2012 +0100 @@ -0,0 +1,6 @@ +# branchmap.py - logic to computes, maintain and stores branchmap for local repo +# +# Copyright 2005-2007 Matt Mackall +# +# This software may be used and distributed according to the terms of the +# GNU General Public License version 2 or any later version.