/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 19:09:26 UTC
  • mfrom: (6622.1.36 breezy)
  • Revision ID: jelmer@jelmer.uk-20170521190926-5vtz8xaf0e9ylrpc
Merge rename to 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 bzrlib._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 bzrlib._static_tuple_c import StaticTuple
 
163
    from breezy._static_tuple_c import StaticTuple
164
164
except ImportError:
165
165
    pass
166
166
else: