Home | History | Annotate | Download | only in python2.7

Lines Matching full:hdrs

154     def __init__(self, url, code, msg, hdrs, fp):
157 self.hdrs = hdrs
165 self.__super_init(fp, hdrs, url, code)
177 return self.hdrs
307 hdrs = self.unredirected_hdrs.copy()
308 hdrs.update(self.headers)
309 return hdrs.items()
517 code, msg, hdrs = response.code, response.msg, response.info()
523 'http', request, response, code, msg, hdrs)
530 def http_error_default(self, req, fp, code, msg, hdrs):
531 raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)