~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/knit.py

  • Committer: Jelmer Vernooij
  • Date: 2006-06-12 01:53:19 UTC
  • mto: (1558.16.3 revert-missing)
  • mto: This revision was merged to the branch mainline in revision 1767.
  • Revision ID: jelmer@samba.org-20060612015319-bed212cff7f6aaf9
Revert some of my spelling fixes and fix some typos after review by Aaron.

Show diffs side-by-side

added added

removed removed

Lines of Context:
453
453
        # maybe we have it
454
454
        if self.has_version(version_id):
455
455
            return False
456
 
        # optimisable if needed by memorizing the _ghosts set.
 
456
        # optimisable if needed by memoising the _ghosts set.
457
457
        items = self._index.get_graph()
458
458
        for node, parents in items:
459
459
            for parent in parents:
728
728
        """See VersionedFile.iter_lines_added_or_present_in_versions()."""
729
729
        if version_ids is None:
730
730
            version_ids = self.versions()
731
 
        # we dont care about inclusions, the caller cares.
 
731
        # we don't care about inclusions, the caller cares.
732
732
        # but we need to setup a list of records to visit.
733
733
        # we need version_id, position, length
734
734
        version_id_records = []
1469
1469
                    # if source has the parent, we must :
1470
1470
                    # * already have it or
1471
1471
                    # * have it scheduled already
1472
 
                    # otherwise we dont care
 
1472
                    # otherwise we don't care
1473
1473
                    assert (self.target.has_version(parent) or
1474
1474
                            parent in copy_set or
1475
1475
                            not self.source.has_version(parent))