/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/bundle/serializer/__init__.py

  • Committer: Robert Collins
  • Date: 2006-09-17 21:03:04 UTC
  • mfrom: (2018 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2019.
  • Revision ID: robertc@robertcollins.net-20060917210304-3a697132f5fb68ac
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
106
106
 
107
107
 
108
108
def _write_bundle(repository, revision_id, base_revision_id, out):
 
109
    """Write a bundle of revisions.
 
110
 
 
111
    :param repository: Repository containing revisions to serialize.
 
112
    :param revision_id: Head revision_id of the bundle.
 
113
    :param base_revision_id: Revision assumed to be present in repositories
 
114
         applying the bundle.
 
115
    :param out: Output file.
 
116
    """
109
117
    if base_revision_id is NULL_REVISION:
110
118
        base_revision_id = None
111
119
    base_ancestry = set(repository.get_ancestry(base_revision_id))