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


Python StringIO.write方法代码示例

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


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

示例1: _read_html

# 需要导入模块: from robot.utils import StringIO [as 别名]
# 或者: from robot.utils.StringIO import write [as 别名]
 def _read_html(self, doctree, rawdata):
     htmlfile = StringIO()
     htmlfile.write(publish_from_doctree(
         doctree, writer_name='html',
         settings_overrides={'output_encoding': 'UTF-8'}))
     htmlfile.seek(0)
     return HtmlReader().read(htmlfile, rawdata)
开发者ID:RoyeeW,项目名称:robotframework,代码行数:9,代码来源:restreader.py

示例2: _MockLogger

# 需要导入模块: from robot.utils import StringIO [as 别名]
# 或者: from robot.utils.StringIO import write [as 别名]
class _MockLogger(object):
    def __init__(self):
        self._output = StringIO()

    def message(self, msg):
        self._output.write(msg.message)

    def value(self):
        return self._output.getvalue()
开发者ID:HelioGuilherme66,项目名称:robotframework,代码行数:11,代码来源:test_populator.py

示例3: ClosableOutput

# 需要导入模块: from robot.utils import StringIO [as 别名]
# 或者: from robot.utils.StringIO import write [as 别名]
class ClosableOutput(object):

    def __init__(self, path):
        self._output = StringIO()
        self._path = path

    def __enter__(self):
        return self

    def __exit__(self, *args):
        self.close()

    def write(self, data):
        self._output.write(data)

    def close(self):
        self.value = self._output.getvalue()
        self._output.close()

    def __str__(self):
        return self._path
开发者ID:BanerjeeSandipan,项目名称:robotframework,代码行数:23,代码来源:test_reporting.py


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