~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/store.py

  • Committer: Martin Pool
  • Date: 2005-09-16 09:39:37 UTC
  • Revision ID: mbp@sourcefrog.net-20050916093937-026fbeac6ee725b7
- InventoryEntry.copy() should copy entry version

Show diffs side-by-side

added added

removed removed

Lines of Context:
184
184
        return (os.access(p, os.R_OK)
185
185
                or os.access(p + '.gz', os.R_OK))
186
186
 
187
 
    # TODO: Guard against the same thing being stored twice, compressed and uncompresse
 
187
    # TODO: Guard against the same thing being stored twice,
 
188
    # compressed and uncompressed
188
189
 
189
190
    def __iter__(self):
190
191
        for f in os.listdir(self._basedir):