Home | History | Annotate | Download | only in codereview

Lines Matching refs:response_dict

2646 			response_dict = dict(x.split("=") for x in response_body.split("\n") if x)
2647 return response_dict["Auth"]
2651 response_dict = dict(x.split("=", 1) for x in body.split("\n") if x)
2652 raise ClientLoginError(req.get_full_url(), e.code, e.msg, e.headers, response_dict)