/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/remote.py

  • Committer: Robert Collins
  • Date: 2008-03-26 21:42:35 UTC
  • mto: This revision was merged to the branch mainline in revision 3313.
  • Revision ID: robertc@robertcollins.net-20080326214235-3wmnqamcgytwif89
 * ``VersionedFile.get_graph`` is deprecated, with no replacement method.
   The method was size(history) and not desirable. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
361
361
        self._ensure_real()
362
362
        return self._real_repository._generate_text_key_index()
363
363
 
 
364
    @symbol_versioning.deprecated_method(symbol_versioning.one_four)
364
365
    def get_revision_graph(self, revision_id=None):
365
366
        """See Repository.get_revision_graph()."""
366
367
        if revision_id is None:
836
837
            # We already found out that the server can't understand
837
838
            # Repository.get_parent_map requests, so just fetch the whole
838
839
            # graph.
 
840
            # XXX: Note that this will issue a deprecation warning. This is ok
 
841
            # :- its because we're working with a deprecated server anyway, and
 
842
            # the user will almost certainly have seen a warning about the
 
843
            # server version already.
839
844
            return self.get_revision_graph()
840
845
 
841
846
        keys = set(keys)