~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/workingtree.py

  • Committer: Aaron Bentley
  • Date: 2008-01-03 22:14:40 UTC
  • mto: This revision was merged to the branch mainline in revision 3241.
  • Revision ID: abentley@panoramicfeedback.com-20080103221440-0y6atamnscjnoh9s
Updates from review

Show diffs side-by-side

added added

removed removed

Lines of Context:
389
389
            if osutils.lexists(self.abspath(path)):
390
390
                yield ie.file_id
391
391
 
392
 
    def iter_all_file_ids(self):
 
392
    def all_file_ids(self):
393
393
        """See Tree.iter_all_file_ids"""
394
 
        return iter(self.inventory)
 
394
        return set(self.inventory)
395
395
 
396
396
    def __repr__(self):
397
397
        return "<%s of %s>" % (self.__class__.__name__,