/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/util/_bencode_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:
157
157
        encode_int(int(x), r)
158
158
    encode_func[BooleanType] = encode_bool
159
159
 
160
 
from brzlib._static_tuple_py import StaticTuple
 
160
from breezy._static_tuple_py import StaticTuple
161
161
encode_func[StaticTuple] = encode_list
162
162
try:
163
 
    from brzlib._static_tuple_c import StaticTuple
 
163
    from breezy._static_tuple_c import StaticTuple
164
164
except ImportError:
165
165
    pass
166
166
else: