~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/remote.py

  • Committer: Aaron Bentley
  • Date: 2007-06-08 21:48:42 UTC
  • mto: This revision was merged to the branch mainline in revision 2534.
  • Revision ID: abentley@panoramicfeedback.com-20070608214842-t47flt7htr2xz0yh
Rename graph to deprecated_graph

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
from bzrlib import (
23
23
    branch,
24
24
    errors,
25
 
    graph_walker,
26
25
    lockdir,
27
26
    repository,
28
27
)
300
299
        assert response[0] in ('yes', 'no'), 'unexpected response code %s' % (response,)
301
300
        return response[0] == 'yes'
302
301
 
303
 
    def get_graph_walker(self, other_repository=None):
304
 
        """Return the graph walker for this repository format"""
305
 
        return self._real_repository.get_graph_walker(other_repository)
 
302
    def get_graph(self, other_repository=None):
 
303
        """Return the graph for this repository format"""
 
304
        return self._real_repository.get_graph(other_repository)
306
305
 
307
306
    def gather_stats(self, revid=None, committers=None):
308
307
        """See Repository.gather_stats()."""