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

  • Committer: Robert Collins
  • Author(s): Robert Collins, John Arbash Meinel, Ian Clatworthy, Vincent Ladeuil
  • Date: 2009-04-07 12:32:42 UTC
  • mto: This revision was merged to the branch mainline in revision 4265.
  • Revision ID: robertc@robertcollins.net-20090407123242-x5htsk0p5k4zsetu
Add --development6-rich-root, disabling the legacy and unneeded development2 format, and activating the tests for CHK features disabled pending this format. (Robert Collins, John Arbash Meinel, Ian Clatworthy, Vincent Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1182
1182
        return other
1183
1183
 
1184
1184
    def _get_mutable_inventory(self):
1185
 
        """Returns a mutable copy of the object.
1186
 
 
1187
 
        Some inventories are immutable, yet working trees, for example, needs
1188
 
        to mutate exisiting inventories instead of creating a new one.
1189
 
        """
1190
 
        return deepcopy(self)
1191
 
 
1192
 
    def _get_mutable_inventory(self):
1193
1185
        """See CommonInventory._get_mutable_inventory."""
1194
1186
        return deepcopy(self)
1195
1187