~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-05-14 23:42:30 UTC
  • mfrom: (5815.5.12 per-file-graph)
  • Revision ID: pqm@pqm.ubuntu.com-20110514234230-f8yy3myzrtp5sxt2
(jelmer) Add Repository.get_file_graph(). (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1150
1150
        """
1151
1151
        raise NotImplementedError(self.get_known_graph_ancestry)
1152
1152
 
 
1153
    def get_file_graph(self):
 
1154
        """Return the graph walker for files."""
 
1155
        raise NotImplementedError(self.get_file_graph)
 
1156
 
1153
1157
    def get_graph(self, other_repository=None):
1154
1158
        """Return the graph walker for this repository format"""
1155
1159
        parents_provider = self._make_parents_provider()