~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 20:36:05 UTC
  • mto: This revision was merged to the branch mainline in revision 3241.
  • Revision ID: aaron.bentley@utoronto.ca-20071231203605-2kp31tw9k4ui5sgw
Cleanup and docs

Show diffs side-by-side

added added

removed removed

Lines of Context:
192
192
    def stored_kind(self, file_id):
193
193
        """File kind stored for this file_id.
194
194
 
195
 
        May not match kind on disk for working trees.  Always available,
196
 
        even for missing files.
 
195
        May not match kind on disk for working trees.  Always available
 
196
        for versioned files, even when the file itself is missing.
197
197
        """
198
198
        return self.kind(file_id)
199
199