/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/mutabletree.py

Merge lp:~jelmer/brz/no-inv-deltas

Show diffs side-by-side

added added

removed removed

Lines of Context:
156
156
        """
157
157
        raise NotImplementedError(self._add)
158
158
 
159
 
    def apply_inventory_delta(self, changes):
160
 
        """Apply changes to the inventory as an atomic operation.
161
 
 
162
 
        :param changes: An inventory delta to apply to the working tree's
163
 
            inventory.
164
 
        :return None:
165
 
        :seealso Inventory.apply_delta: For details on the changes parameter.
166
 
        """
167
 
        raise NotImplementedError(self.apply_inventory_delta)
168
 
 
169
159
    def commit(self, message=None, revprops=None, *args, **kwargs):
170
160
        # avoid circular imports
171
161
        from breezy import commit