test_util.py 文件源码

python
阅读 32 收藏 0 点赞 0 评论 0

项目:dsub 作者: googlegenomics 项目源码 文件源码
def diff(str1, str2):
  """Determine if two strings differ, emit differences to stdout."""
  result = list(difflib.Differ().compare(
      str1.splitlines(True), str2.splitlines(True)))

  same = True
  for line in result:
    if line[0] in ('-', '+'):
      same = False
      sys.stdout.write(line)

  return same
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号