~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

  • Committer: Jelmer Vernooij
  • Date: 2011-12-11 02:43:03 UTC
  • mto: (6213.1.40 feature-flags)
  • mto: This revision was merged to the branch mainline in revision 6353.
  • Revision ID: jelmer@samba.org-20111211024303-up1qg5oc0zo061d2
Add test for WorkingTreeFormat.from_string.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2000
2000
 
2001
2001
 
2002
2002
class BranchFormatMetadir(bzrdir.BzrDirMetaComponentFormat, BranchFormat):
2003
 
    """Common logic for meta-dir based branch formats."""
 
2003
    """Base class for branch formats that live in meta directories.
 
2004
    """
2004
2005
 
2005
2006
    def __init__(self):
2006
2007
        BranchFormat.__init__(self)