~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/weave.py

  • Committer: Robert Collins
  • Date: 2006-03-06 09:38:37 UTC
  • mto: (1594.2.4 integration)
  • mto: This revision was merged to the branch mainline in revision 1596.
  • Revision ID: robertc@robertcollins.net-20060306093837-b151989e9572895e
Remove all but fetch references to repository.revision_store.

Show diffs side-by-side

added added

removed removed

Lines of Context:
413
413
 
414
414
    def _inclusions(self, versions):
415
415
        """Return set of all ancestors of given version(s)."""
 
416
        if not len(versions):
 
417
            return []
416
418
        i = set(versions)
417
419
        for v in xrange(max(versions), 0, -1):
418
420
            if v in i: