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

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 19:09:26 UTC
  • mfrom: (6622.1.36 breezy)
  • Revision ID: jelmer@jelmer.uk-20170521190926-5vtz8xaf0e9ylrpc
Merge rename to breezy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
"""RemoteTransport client for the smart-server.
18
18
 
19
19
This module shouldn't be accessed directly.  The classes defined here should be
20
 
imported from bzrlib.smart.
 
20
imported from breezy.smart.
21
21
"""
22
22
 
23
23
from __future__ import absolute_import
26
26
 
27
27
from cStringIO import StringIO
28
28
 
29
 
from bzrlib import (
 
29
from breezy import (
30
30
    config,
31
31
    debug,
32
32
    errors,
35
35
    transport,
36
36
    urlutils,
37
37
    )
38
 
from bzrlib.smart import client, medium
 
38
from breezy.smart import client, medium
39
39
 
40
40
 
41
41
class _SmartStat(object):
309
309
        self._ensure_ok(resp)
310
310
 
311
311
    def external_url(self):
312
 
        """See bzrlib.transport.Transport.external_url."""
 
312
        """See breezy.transport.Transport.external_url."""
313
313
        # the external path for RemoteTransports is the base
314
314
        return self.base
315
315
 
599
599
    """Return (transport, server) permutations for testing."""
600
600
    ### We may need a little more test framework support to construct an
601
601
    ### appropriate RemoteTransport in the future.
602
 
    from bzrlib.tests import test_server
 
602
    from breezy.tests import test_server
603
603
    return [(RemoteTCPTransport, test_server.SmartTCPServer_for_testing)]