~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: John Arbash Meinel
  • Date: 2006-07-11 14:44:59 UTC
  • mto: This revision was merged to the branch mainline in revision 1869.
  • Revision ID: john@arbash-meinel.com-20060711144459-40085c06b14494e0
(broken) Work on factoring out handle_response so we can test with fake headers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
87
87
        self._build_headers()
88
88
        self._data.seek(0, 0)
89
89
 
 
90
        mutter('headers: %s', self._header.getvalue())
 
91
        mutter('data: %r', self._data.getvalue())
 
92
 
90
93
    def _build_headers(self):
91
94
        """Parse the headers into RFC822 format"""
92
95
        url = self._curl_handle.getinfo(pycurl.EFFECTIVE_URL)