/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/knit.py

  • Committer: Andrew Bennetts
  • Date: 2009-11-19 06:28:13 UTC
  • mfrom: (4811 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4812.
  • Revision ID: andrew.bennetts@canonical.com-20091119062813-t6sd6gwbot8nfyze
MergeĀ lp:bzr.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1710
1710
            # There were index entries buffered at the end of the stream,
1711
1711
            # So these need to be added (if the index supports holding such
1712
1712
            # entries for later insertion)
 
1713
            all_entries = []
1713
1714
            for key in buffered_index_entries:
1714
1715
                index_entries = buffered_index_entries[key]
1715
 
                self._index.add_records(index_entries,
1716
 
                    missing_compression_parents=True)
 
1716
                all_entries.extend(index_entries)
 
1717
            self._index.add_records(
 
1718
                all_entries, missing_compression_parents=True)
1717
1719
 
1718
1720
    def get_missing_compression_parent_keys(self):
1719
1721
        """Return an iterable of keys of missing compression parents.
2365
2367
    FLAGS is a comma separated list of flags about the record. Values include
2366
2368
        no-eol, line-delta, fulltext.
2367
2369
    BYTE_OFFSET is the ascii representation of the byte offset in the data file
2368
 
        that the the compressed data starts at.
 
2370
        that the compressed data starts at.
2369
2371
    LENGTH is the ascii representation of the length of the data file.
2370
2372
    PARENT_ID a utf-8 revision id prefixed by a '.' that is a parent of
2371
2373
        REVISION_ID.