当前位置: 首页>>代码示例>>Python>>正文


Python BytesIO.__init__方法代码示例

本文整理汇总了Python中six.BytesIO.__init__方法的典型用法代码示例。如果您正苦于以下问题:Python BytesIO.__init__方法的具体用法?Python BytesIO.__init__怎么用?Python BytesIO.__init__使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在six.BytesIO的用法示例。


在下文中一共展示了BytesIO.__init__方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: __init__

# 需要导入模块: from six import BytesIO [as 别名]
# 或者: from six.BytesIO import __init__ [as 别名]
 def __init__(self, stream, status=200, headers=None):
     self.status = status
     self.headers = headers or {}
     self.reason = requests.status_codes._codes.get(
         status, ['']
     )[0].upper().replace('_', ' ')
     BytesIO.__init__(self, stream)
开发者ID:lukesneeringer,项目名称:fauxquests,代码行数:9,代码来源:response.py

示例2: result

# 需要导入模块: from six import BytesIO [as 别名]
# 或者: from six.BytesIO import __init__ [as 别名]
 def result(found):
     self.status, content_type, self._path = found
     self.reason = reason(self.status)
     self.headers = {"Content-Type": content_type or ""}
     BytesIO.__init__(
         self,
         _io_read_file(self.status, self._path)
     )
开发者ID:ericmoritz,项目名称:hydra-python-client,代码行数:10,代码来源:requests_file_adapter.py

示例3: __init__

# 需要导入模块: from six import BytesIO [as 别名]
# 或者: from six.BytesIO import __init__ [as 别名]
 def __init__(self, buffer=b'', cc=None):
     """
     If ``cc`` is given and is a file-like object or an iterable of same,
     it/they will be written to whenever this instance is written to.
     """
     IO.__init__(self, buffer)
     if cc is None:
         cc = []
     elif hasattr(cc, 'write'):
         cc = [cc]
     self.cc = cc
开发者ID:bitprophet,项目名称:spec,代码行数:13,代码来源:trap.py

示例4: __init__

# 需要导入模块: from six import BytesIO [as 别名]
# 或者: from six.BytesIO import __init__ [as 别名]
 def __init__(self, *args, **kwargs):
     """Initialize."""
     self.called = False
     if PY2:
         return BytesIO.__init__(self, *args, **kwargs)
     else:
         return super(BadBytesIO, self).__init__(*args, **kwargs)
开发者ID:drjova,项目名称:invenio-files-rest,代码行数:9,代码来源:testutils.py

示例5: __init__

# 需要导入模块: from six import BytesIO [as 别名]
# 或者: from six.BytesIO import __init__ [as 别名]
 def __init__(self, *args, **kwargs):
     BytesIO.__init__(self, *args, **kwargs)
     self.headers = self.Headers()
开发者ID:BrajeshKhare,项目名称:authorizesauce,代码行数:5,代码来源:test_api_transaction.py


注:本文中的six.BytesIO.__init__方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。