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


Python SimilarSizeWriter.max_line_change方法代码示例

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


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

示例1: assert

# 需要导入模块: from Cerebrum.utils.atomicfile import SimilarSizeWriter [as 别名]
# 或者: from Cerebrum.utils.atomicfile.SimilarSizeWriter import max_line_change [as 别名]
        assert(os.access(outFilePath, os.W_OK))  # Is output writable?
    except IOError, err:
        logger.error(err)
        raise err

    logger.info("Reading from: %s (%s bytes)",
                inFilePath, os.path.getsize(inFilePath))
    logger.info("Comparing to: %s (%s bytes)",
                outFilePath, os.path.getsize(outFilePath))

    if limit_percentage:
        ssw = SimilarSizeWriter(outFilePath, mode='w')
        ssw.max_pct_change = limit_percentage
    else:
        ssw = SimilarLineCountWriter(outFilePath, mode='w')
        ssw.max_line_change = limit_lines

    # read from input, write to temporary output file
    for line in inFile:
        ssw.write(line)

    try:
        # close() checks that changes are within limits
        ssw.close()
    except FileChangeTooBigError as err:
        logger.error(
            "Changes are too big, leaving behind temporary file %s",
            ssw._tmpname)
        raise err

    logger.info("Changes are within limits, file replaced")
开发者ID:unioslo,项目名称:cerebrum,代码行数:33,代码来源:copy_with_size_check.py


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