~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/groupcompress.py

  • Committer: Parth Malwankar
  • Date: 2010-05-14 13:25:05 UTC
  • mto: This revision was merged to the branch mainline in revision 5241.
  • Revision ID: parth.malwankar@gmail.com-20100514132505-ba9rxnpooifq4o5q
code cleanup and comments.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
    pack,
34
34
    static_tuple,
35
35
    trace,
36
 
    ui,
37
36
    )
38
37
from bzrlib.btree_index import BTreeBuilder
39
38
from bzrlib.lru_cache import LRUSizeCache
1759
1758
            flush()
1760
1759
        self._compressor = None
1761
1760
 
1762
 
 
1763
1761
    def iter_lines_added_or_present_in_keys(self, keys, pb=None):
1764
1762
        """Iterate over the lines in the versioned files from keys.
1765
1763