mercurial/utils/hashutil.py
author Martin von Zweigbergk <martinvonz@google.com>
Wed, 09 Dec 2020 00:00:19 -0800
changeset 46100 a771ffc378a8
parent 44059 7126d8b8e0e6
child 46785 521ac0d7047f
permissions -rw-r--r--
simplemerge: write output only once it's complete `simplemerge()` can write either to `ui.fout` or to the file context (for in-memory merge). This patch simplifies the code a bit by making it build the output the same way regardless of where it's written, and then writes the whole output at once. I don't think it will be a problem that we don't output anything until the whole file is merged even if the file is large. Differential Revision: https://phab.mercurial-scm.org/D9550

from __future__ import absolute_import

import hashlib

try:
    from ..thirdparty import sha1dc

    sha1 = sha1dc.sha1
except (ImportError, AttributeError):
    sha1 = hashlib.sha1