~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tree.py

  • Committer: Aaron Bentley
  • Date: 2007-12-31 05:35:39 UTC
  • mto: This revision was merged to the branch mainline in revision 3241.
  • Revision ID: aaron.bentley@utoronto.ca-20071231053539-lpxc6wewg2r17bd9
Eliminate direct use of inventory from transform application

Show diffs side-by-side

added added

removed removed

Lines of Context:
189
189
        raise NotImplementedError("Tree subclass %s must implement kind"
190
190
            % self.__class__.__name__)
191
191
 
 
192
    def stored_kind(self, file_id):
 
193
        """File kind stored for this file_id.
 
194
 
 
195
        May not match kind on disk for working trees.  Always available,
 
196
        even for missing files.
 
197
        """
 
198
        return self.kind(file_id)
 
199
 
192
200
    def path_content_summary(self, path):
193
201
        """Get a summary of the information about path.
194
202