~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_bencode.py

  • Committer: Jelmer Vernooij
  • Date: 2009-05-26 09:20:17 UTC
  • mto: (4398.5.1 bencode_serializer)
  • mto: This revision was merged to the branch mainline in revision 4410.
  • Revision ID: jelmer@samba.org-20090526092017-wg59cjp86s69fmam
Move bzrlib.util.bencode to bzrlib._bencode_py.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
from bzrlib.tests import TestCase, Feature
20
20
 
21
21
from bzrlib import bencode as bencode_default
22
 
from bzrlib.util import bencode as bencode_py
 
22
from bzrlib import _bencode_py as bencode_py
23
23
try:
24
24
    from bzrlib import _bencode_c as bencode_c
25
25
except ImportError: