~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/hashcache.py

  • Committer: Aaron Bentley
  • Date: 2005-10-04 04:32:32 UTC
  • mfrom: (1185.12.6)
  • mto: (1185.12.13)
  • mto: This revision was merged to the branch mainline in revision 1419.
  • Revision ID: aaron.bentley@utoronto.ca-20051004043231-40302a149769263b
merged my own changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
101
101
        self.update_count = 0
102
102
        self._cache = {}
103
103
 
 
104
 
104
105
    def cache_file_name(self):
105
 
        # FIXME: duplicate path logic here, this should be 
106
 
        # something like 'branch.controlfile'.
107
106
        return os.sep.join([self.basedir, '.bzr', 'stat-cache'])
108
107
 
 
108
 
 
109
 
 
110
 
109
111
    def clear(self):
110
112
        """Discard all cached information.
111
113