~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/groupcompress.py

  • Committer: Andrew Bennetts
  • Date: 2009-09-03 07:52:48 UTC
  • mto: (4634.6.27 2.0)
  • mto: This revision was merged to the branch mainline in revision 4680.
  • Revision ID: andrew.bennetts@canonical.com-20090903075248-3vzzx3t2crldtijv
Check for all necessary chk nodes, not just roots.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1101
1101
        self._group_cache = LRUSizeCache(max_size=50*1024*1024)
1102
1102
        self._fallback_vfs = []
1103
1103
 
 
1104
    def without_fallbacks(self):
 
1105
        gcvf = GroupCompressVersionedFiles(
 
1106
            self._index, self._access, self._delta)
 
1107
        gcvf._unadded_refs = dict(self._unadded_refs)
 
1108
        return gcvf
 
1109
 
1104
1110
    def add_lines(self, key, parents, lines, parent_texts=None,
1105
1111
        left_matching_blocks=None, nostore_sha=None, random_id=False,
1106
1112
        check_content=True):