~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bundle/serializer/v10.py

  • Committer: Aaron Bentley
  • Date: 2007-06-14 23:24:59 UTC
  • mto: (2520.5.2 bzr.mpbundle)
  • mto: This revision was merged to the branch mainline in revision 2631.
  • Revision ID: abentley@panoramicfeedback.com-20070614232459-hpa3sbawd71o7u3d
Reactivate some testing, fix topo_iter

Show diffs side-by-side

added added

removed removed

Lines of Context:
199
199
 
200
200
    revisions = property(_get_revisions)
201
201
 
 
202
    def _get_target(self):
 
203
        return self.revisions[-1].revision_id
 
204
 
 
205
    target = property(_get_target)
 
206
 
202
207
 
203
208
class RevisionInstaller(object):
204
209
 
212
217
        current_versionedfile = None
213
218
        pending_file_records = []
214
219
        added_inv = set()
 
220
        target_revision = None
215
221
        for bytes, parents, repo_kind, revision_id, file_id in\
216
222
            self._container.iter_records():
217
223
            if  repo_kind != 'file':