~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/versionedfile.py

  • Committer: Jelmer Vernooij
  • Date: 2006-06-10 00:21:11 UTC
  • mto: (1558.16.3 revert-missing)
  • mto: This revision was merged to the branch mainline in revision 1767.
  • Revision ID: jelmer@samba.org-20060610002111-ff582d7ee2090037
Fix some types (found using aspell).

Show diffs side-by-side

added added

removed removed

Lines of Context:
287
287
        
288
288
        Ghosts are not listed or referenced in the graph.
289
289
        :param version_ids: Versions to select.
290
 
                            None means retreive all versions.
 
290
                            None means retrieve all versions.
291
291
        """
292
292
        result = {}
293
293
        if version_ids is None:
483
483
       
484
484
        # We previously considered either 'unchanged' or 'killed-both' lines
485
485
        # to be possible places to resynchronize.  However, assuming agreement
486
 
        # on killed-both lines may be too agressive. -- mbp 20060324
 
486
        # on killed-both lines may be too aggressive. -- mbp 20060324
487
487
        for state, line in self.plan:
488
488
            if state == 'unchanged':
489
489
                # resync and flush queued conflicts changes if any
638
638
class InterVersionedFileTestProviderAdapter(object):
639
639
    """A tool to generate a suite testing multiple inter versioned-file classes.
640
640
 
641
 
    This is done by copying the test once for each interversionedfile provider
 
641
    This is done by copying the test once for each InterVersionedFile provider
642
642
    and injecting the transport_server, transport_readonly_server,
643
643
    versionedfile_factory and versionedfile_factory_to classes into each copy.
644
644
    Each copy is also given a new id() to make it easy to identify.