/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: John Arbash Meinel
  • Date: 2006-09-16 02:14:14 UTC
  • mfrom: (2016 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2017.
  • Revision ID: john@arbash-meinel.com-20060916021414-bd9e4cb9ac173022
[merge] bzr.dev 2016

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))