/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/_chk_map_py.py

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 18:10:28 UTC
  • mto: This revision was merged to the branch mainline in revision 6623.
  • Revision ID: jelmer@jelmer.uk-20170521181028-zn04pdfw0od9hfj3
Rename brzlib => breezy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
import zlib
22
22
import struct
23
23
 
24
 
from brzlib.static_tuple import StaticTuple
 
24
from breezy.static_tuple import StaticTuple
25
25
 
26
26
_LeafNode = None
27
27
_InternalNode = None
65
65
    """
66
66
    global _unknown, _LeafNode, _InternalNode
67
67
    if _LeafNode is None:
68
 
        from brzlib import chk_map
 
68
        from breezy import chk_map
69
69
        _unknown = chk_map._unknown
70
70
        _LeafNode = chk_map.LeafNode
71
71
        _InternalNode = chk_map.InternalNode
123
123
def _deserialise_internal_node(bytes, key, search_key_func=None):
124
124
    global _unknown, _LeafNode, _InternalNode
125
125
    if _InternalNode is None:
126
 
        from brzlib import chk_map
 
126
        from breezy import chk_map
127
127
        _unknown = chk_map._unknown
128
128
        _LeafNode = chk_map.LeafNode
129
129
        _InternalNode = chk_map.InternalNode