本文整理汇总了Python中types.SimpleNamespace.readall方法的典型用法代码示例。如果您正苦于以下问题:Python SimpleNamespace.readall方法的具体用法?Python SimpleNamespace.readall怎么用?Python SimpleNamespace.readall使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类types.SimpleNamespace
的用法示例。
在下文中一共展示了SimpleNamespace.readall方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: create_http_client
# 需要导入模块: from types import SimpleNamespace [as 别名]
# 或者: from types.SimpleNamespace import readall [as 别名]
def create_http_client(self, response_str="", http_error_codes=None, authentication_handler=EmptyAuthenticationHandler(), header=None):
h = HttpClient(base_url="http://irgendw.as",
authentication_handler= authentication_handler,
retry_delay_sec=0)
response = SimpleNamespace()
response.readall = Mock(spec=(""), return_value=response_str.encode("UTF-8"))
response.headers = SimpleNamespace()
response.headers.get_content_charset= Mock(spec=(""), return_value="UTF-8")
response.getheader = Mock(spec=(""), return_value=header)
side_effects = [HTTPError("http://foo.bar", code, None, None, None) if code else DEFAULT for code in http_error_codes] if http_error_codes else None
h.__open__ = Mock(spec=(""),
return_value=response,
side_effect=side_effects)
return h