~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transform.py

  • Committer: Aaron Bentley
  • Date: 2007-12-25 17:16:48 UTC
  • mto: This revision was merged to the branch mainline in revision 3189.
  • Revision ID: aaron.bentley@utoronto.ca-20071225171648-60c6psxzaqimp6re
Get supported PreviewTree functionality under test

Show diffs side-by-side

added added

removed removed

Lines of Context:
1341
1341
        self._transform = transform
1342
1342
 
1343
1343
    def lock_read(self):
 
1344
        # Perhaps in theory, this should lock the TreeTransform?
1344
1345
        pass
1345
1346
 
1346
1347
    def unlock(self):
1347
1348
        pass
1348
1349
 
1349
 
    def changes_from(self, other, want_unchanged=False, specific_files=None,
1350
 
        extra_trees=None, require_versioned=False, include_root=False,
1351
 
        want_unversioned=False):
1352
 
        return tree.InterTree.get(other, self).compare(
1353
 
            want_unchanged=want_unchanged,
1354
 
            specific_files=specific_files,
1355
 
            extra_trees=extra_trees,
1356
 
            require_versioned=require_versioned,
1357
 
            include_root=include_root,
1358
 
            want_unversioned=want_unversioned,
1359
 
            )
1360
 
 
1361
1350
    def _iter_changes(self, from_tree, include_unchanged=False,
1362
1351
                      specific_files=None, pb=None, extra_trees=None,
1363
1352
                      require_versioned=True, want_unversioned=False):