~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/hashcache.py

todo

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