Lines Matching refs:hdrs
181 def __init__(self, url, code, msg, hdrs, fp): argument
184 self.hdrs = hdrs
192 self.__super_init(fp, hdrs, url, code)
204 return self.hdrs
332 hdrs = self.unredirected_hdrs.copy()
333 hdrs.update(self.headers)
334 return hdrs.items()
542 code, msg, hdrs = response.code, response.msg, response.info()
548 'http', request, response, code, msg, hdrs)
555 def http_error_default(self, req, fp, code, msg, hdrs): argument
556 raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)