/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 breezy/workingtree.py

Merge tree reference fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1325
1325
        with self.lock_read():
1326
1326
            return next(self.get_canonical_paths([path]))
1327
1327
 
 
1328
    def reference_parent(self, path, branch=None, possible_transports=None):
 
1329
        raise errors.UnsupportedOperation(self.reference_parent, self)
 
1330
 
 
1331
    def get_reference_info(self, path, branch=None):
 
1332
        raise errors.UnsupportedOperation(self.get_reference_info, self)
 
1333
 
 
1334
    def set_reference_info(self, tree_path, branch_location):
 
1335
        raise errors.UnsupportedOperation(self.set_reference_info, self)
 
1336
 
1328
1337
 
1329
1338
class WorkingTreeFormatRegistry(ControlComponentFormatRegistry):
1330
1339
    """Registry for working tree formats."""