~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

  • Committer: Jelmer Vernooij
  • Date: 2011-05-13 09:30:57 UTC
  • mto: This revision was merged to the branch mainline in revision 5863.
  • Revision ID: jelmer@samba.org-20110513093057-emzyj65139jpxayu
Use traditional (fileid, revision) entries in file graph.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1160
1160
        """
1161
1161
        raise NotImplementedError(self.get_known_graph_ancestry)
1162
1162
 
1163
 
    def get_file_graph(self, file_id):
1164
 
        """Return the graph walker for a specific file."""
 
1163
    def get_file_graph(self):
 
1164
        """Return the graph walker for files."""
1165
1165
        raise NotImplementedError(self.get_file_graph)
1166
1166
 
1167
1167
    def get_graph(self, other_repository=None):