~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to multiparent.py

  • Committer: Aaron Bentley
  • Date: 2007-04-13 17:23:54 UTC
  • mto: (2520.4.1 bzr.mpbundle)
  • mto: This revision was merged to the branch mainline in revision 2631.
  • Revision ID: abentley@panoramicfeedback.com-20070413172354-hejzo2abnnfkga8b
Enable caching commandline param

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
    trace,
10
10
    ui,
11
11
    )
12
 
 
13
12
from bzrlib.tuned_gzip import GzipFile
14
13
 
 
14
 
15
15
def topo_iter(vf):
16
16
    seen = set()
17
17
    descendants = {}
365
365
        reconstructor = _Reconstructor(self, self._lines,
366
366
                                       self._parents)
367
367
        reconstructor.reconstruct_version(lines, version_id)
368
 
        #self._lines[version_id] = lines
 
368
        self._lines[version_id] = lines
369
369
        return lines
370
370
 
 
371
 
371
372
class MultiMemoryVersionedFile(BaseVersionedFile):
372
373
 
373
374
    def __init__(self, snapshot_interval=25, max_snapshots=None):