/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/controldir.py

(jelmer) Add ControlDirFormat.supports_workingtrees cvar. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
562
562
    object will be created every system load.
563
563
 
564
564
    :cvar colocated_branches: Whether this formats supports colocated branches.
 
565
    :cvar supports_workingtrees: This control directory can co-exist with a
 
566
        working tree.
565
567
    """
566
568
 
567
569
    _default_format = None
589
591
    """Whether co-located branches are supported for this control dir format.
590
592
    """
591
593
 
 
594
    supports_workingtrees = True
 
595
 
592
596
    def get_format_description(self):
593
597
        """Return the short description for this format."""
594
598
        raise NotImplementedError(self.get_format_description)