~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/mutabletree.py

  • Committer: Aaron Bentley
  • Date: 2009-03-13 02:48:11 UTC
  • mto: This revision was merged to the branch mainline in revision 4196.
  • Revision ID: aaron@aaronbentley.com-20090313024811-9axeirnp04srsz50
Update texts

Show diffs side-by-side

added added

removed removed

Lines of Context:
235
235
        """Helper function for add - sets the entries of kinds."""
236
236
        raise NotImplementedError(self._gather_kinds)
237
237
 
238
 
    def guess_renames(self, specific_files=None):
 
238
    def guess_renames(self):
 
239
        """Guess which files to rename, and perform the rename.
 
240
 
 
241
        We assume that unversioned files and missing files indicate that
 
242
        versioned files have been renamed outside of Bazaar.
 
243
        """
239
244
        missing_files = set()
240
245
        candidate_files = set()
241
246
        basis = self.basis_tree()