~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

  • Committer: Aaron Bentley
  • Date: 2007-05-25 03:17:26 UTC
  • mto: This revision was merged to the branch mainline in revision 2534.
  • Revision ID: aaron.bentley@utoronto.ca-20070525031726-tey81wph8x3hg4po
Start work on GraphWalker

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
    generate_ids,
30
30
    gpg,
31
31
    graph,
 
32
    graph_walker,
32
33
    lazy_regex,
33
34
    lockable_files,
34
35
    lockdir,
734
735
            done.add(revision_id)
735
736
        return result
736
737
 
 
738
    def get_graph_walker(self):
 
739
        """Return the graph walker for this repository format"""
 
740
        return graph_walker.GraphWalker(self.get_revision_graph_with_ghosts())
 
741
 
737
742
    def _get_history_vf(self):
738
743
        """Get a versionedfile whose history graph reflects all revisions.
739
744