/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 bzrlib/remote.py

Add test for sending ProtocolThreeResponder.send_error(UnknownSmartMethod(...)).

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
from bzrlib.lockable_files import LockableFiles
39
39
from bzrlib.pack import ContainerPushParser
40
40
from bzrlib.smart import client, vfs
41
 
from bzrlib.symbol_versioning import (
42
 
    deprecated_method,
43
 
    zero_ninetyone,
44
 
    )
45
41
from bzrlib.revision import ensure_null, NULL_REVISION
46
42
from bzrlib.trace import mutter, note, warning
47
43