~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/btree_index.py

  • Committer: John Arbash Meinel
  • Date: 2008-11-25 18:55:38 UTC
  • mto: This revision was merged to the branch mainline in revision 3855.
  • Revision ID: john@arbash-meinel.com-20081125185538-7lj7din373541s0r
Bring back the shortcut

Show diffs side-by-side

added added

removed removed

Lines of Context:
442
442
                yield self, key, node[1]
443
443
        # Find things that are in backing indices that have not been handled
444
444
        # yet.
 
445
        if not self._backing_indices:
 
446
            return # We won't find anything there either
445
447
        # Remove all of the keys that we found locally
446
448
        keys.difference_update(local_keys)
447
449
        for backing in self._backing_indices: