~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/http/_pycurl.py

Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
                           TransportError, ConnectionError,
32
32
                           DependencyNotPresent)
33
33
from bzrlib.trace import mutter
34
 
from bzrlib.transport import Transport
 
34
from bzrlib.transport import register_urlparse_netloc_protocol
35
35
from bzrlib.transport.http import HttpTransportBase, extract_auth, HttpServer
36
36
 
37
37
try:
41
41
    raise DependencyNotPresent('pycurl', e)
42
42
 
43
43
 
 
44
register_urlparse_netloc_protocol('http+pycurl')
 
45
 
 
46
 
44
47
class PyCurlTransport(HttpTransportBase):
45
48
    """http client transport using pycurl
46
49