~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/versionedfile.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-11-21 22:19:32 UTC
  • mfrom: (3830.3.25 288751-pack-deltas)
  • Revision ID: pqm@pqm.ubuntu.com-20081121221932-44m8c85k5ri8h5hg
(mbp) Fix bug #288751 by teaching fetch to expand to fulltexts if it
        would cause a delta to span repo boundaries.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006 Canonical Ltd
 
1
# Copyright (C) 2005, 2006, 2007, 2008 Canonical Ltd
2
2
#
3
3
# Authors:
4
4
#   Johan Rydberg <jrydberg@gnu.org>
30
30
 
31
31
from bzrlib import (
32
32
    errors,
 
33
    index,
33
34
    osutils,
34
35
    multiparent,
35
36
    tsort,
846
847
        """
847
848
        raise NotImplementedError(self.get_sha1s)
848
849
 
 
850
    has_key = index._has_key_from_parent_map
 
851
 
849
852
    def insert_record_stream(self, stream):
850
853
        """Insert a record stream into this container.
851
854
 
922
925
                parent_lines, left_parent_blocks))
923
926
        return diffs
924
927
 
 
928
    missing_keys = index._missing_keys_from_parent_map
 
929
 
925
930
    def _extract_blocks(self, version_id, source, target):
926
931
        return None
927
932