~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branchfmt/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2012-07-02 20:18:21 UTC
  • mto: This revision was merged to the branch mainline in revision 6535.
  • Revision ID: jelmer@samba.org-20120702201821-nirytm77tx4jrm8h
Add comment.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
 
"""Branch formats"""
 
17
"""Branch formats.
 
18
 
 
19
This package contains various branch format implementations. Ideally
 
20
all specific format implementations will be moved out of bzrlib.branch
 
21
into this package.
 
22
"""
18
23
 
19
24
from __future__ import absolute_import
20
25