/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/transport/http/_pycurl.py

  • Committer: Andrew Bennetts
  • Date: 2007-10-26 01:09:10 UTC
  • mfrom: (2944 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2945.
  • Revision ID: andrew.bennetts@canonical.com-20071026010910-5ibwby7sfga11llr
Merge from bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
                           ConnectionError,
45
45
                           DependencyNotPresent)
46
46
from bzrlib.trace import mutter
47
 
from bzrlib.transport import register_urlparse_netloc_protocol
48
47
from bzrlib.transport.http import (
49
48
    ca_bundle,
50
49
    _extract_headers,
96
95
CURLE_PARTIAL_FILE = _get_pycurl_errcode('E_PARTIAL_FILE', 18)
97
96
 
98
97
 
99
 
register_urlparse_netloc_protocol('http+pycurl')
100
 
 
101
 
 
102
98
class PyCurlTransport(HttpTransportBase):
103
99
    """http client transport using pycurl
104
100