/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/branch.py

  • Committer: Jelmer Vernooij
  • Date: 2009-05-28 16:14:16 UTC
  • mfrom: (4387 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4389.
  • Revision ID: jelmer@samba.org-20090528161416-k7x0l8hwuk2kyvsf
merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
877
877
 
878
878
        :param target: Target branch
879
879
        :param stop_revision: Revision to push, defaults to last revision.
880
 
        :return: Dictionary mapping revision ids from the target branch 
 
880
        :return: BranchPushResult with an extra member revidmap: 
 
881
            A dictionary mapping revision ids from the target branch 
881
882
            to new revision ids in the target branch, for each 
882
883
            revision that was pushed.
883
884
        """
931
932
            location = None
932
933
        return location
933
934
 
 
935
    def get_child_submit_format(self):
 
936
        """Return the preferred format of submissions to this branch."""
 
937
        return self.get_config().get_user_option("child_submit_format")
 
938
 
934
939
    def get_submit_branch(self):
935
940
        """Return the submit location of the branch.
936
941