~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/benchmarks/bench_bundle.py

  • Committer: John Arbash Meinel
  • Date: 2006-10-27 15:15:40 UTC
  • mto: This revision was merged to the branch mainline in revision 2097.
  • Revision ID: john@arbash-meinel.com-20061027151540-1fe5a39f40355478
Fix imports for bundles.

bundle benchmarks were importing read_bundle from the wrong place.
Fix them, and change imports to avoid people accidentally doing
that in the future.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
from bzrlib.add import smart_add
25
25
from bzrlib.benchmarks import Benchmark
26
26
from bzrlib.branch import Branch
27
 
from bzrlib.bundle import read_bundle
28
27
from bzrlib.bundle.apply_bundle import install_bundle
29
 
from bzrlib.bundle.serializer import write_bundle
 
28
from bzrlib.bundle.serializer import read_bundle, write_bundle
30
29
from bzrlib.revision import NULL_REVISION
31
30
from bzrlib.revisionspec import RevisionSpec
32
31
from bzrlib.workingtree import WorkingTree