/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: 2019-01-01 21:23:40 UTC
  • mfrom: (7206.4.1 move-testament)
  • Revision ID: breezy.the.bot@gmail.com-20190101212340-6wmbncvwqal06rif
Move the testament module to breezy.bzr.

Merged from https://code.launchpad.net/~jelmer/brz/move-testament/+merge/359939

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: