~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Robey Pointer
  • Date: 2006-09-03 00:28:18 UTC
  • mfrom: (1981 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1996.
  • Revision ID: robey@lag.net-20060903002818-71ca5c7bfea93a26
merge from bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
174
174
        data.seek(0)
175
175
 
176
176
        code = curl.getinfo(pycurl.HTTP_CODE)
177
 
        # mutter('url: %s header:\n%s', abspath, header.getvalue())
 
177
        # mutter('header:\n%r', header.getvalue())
178
178
        headers = _extract_headers(header.getvalue(), abspath)
179
179
        # handle_response will raise NoSuchFile, etc based on the response code
180
180
        return code, response.handle_response(abspath, code, headers, data)