view mercurial/utils/hashutil.py @ 45071:196ba4d4eb86

tests: update test-devel-warnings.t output with chg
author Pulkit Goyal <7895pulkit@gmail.com>
date Sat, 11 Jul 2020 00:31:21 +0530
parents 7126d8b8e0e6
children 521ac0d7047f
line wrap: on
line source

from __future__ import absolute_import

import hashlib

try:
    from ..thirdparty import sha1dc

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