/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/bisect_multi.py

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-11-20 22:51:03 UTC
  • mfrom: (7199.4.1 git-ignore)
  • Revision ID: breezy.the.bot@gmail.com-20181120225103-797eeqny66nf9tcd
Fix 'brz ignore' in git working trees.

Merged from https://code.launchpad.net/~jelmer/brz/git-ignore/+merge/359009

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
"""Bisection lookup multiple keys."""
18
18
 
 
19
from __future__ import absolute_import
 
20
 
19
21
__all__ = [
20
22
    'bisect_multi_bytes',
21
23
    ]
56
58
                search_keys.append((location - delta, key))
57
59
            elif status == 1:
58
60
                search_keys.append((location + delta, key))
59
 
            elif status == False:
 
61
            elif status is False:
60
62
                # not present, stop searching
61
63
                continue
62
64
            else: