~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/smart/repository.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:
26
26
import threading
27
27
 
28
28
from bzrlib import (
 
29
    bencode,
29
30
    errors,
30
31
    graph,
31
32
    osutils,
39
40
    )
40
41
from bzrlib.repository import _strip_NULL_ghosts, network_format_registry
41
42
from bzrlib import revision as _mod_revision
42
 
from bzrlib.util import bencode
43
43
from bzrlib.versionedfile import NetworkRecordStream, record_to_fulltext_bytes
44
44
 
45
45