~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/remote.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:
20
20
import bz2
21
21
 
22
22
from bzrlib import (
 
23
    bencode,
23
24
    branch,
24
25
    bzrdir,
25
26
    config,
45
46
from bzrlib.smart import client, vfs, repository as smart_repo
46
47
from bzrlib.revision import ensure_null, NULL_REVISION
47
48
from bzrlib.trace import mutter, note, warning
48
 
from bzrlib.util import bencode
49
49
 
50
50
 
51
51
class _RpcHelper(object):