view mercurial/utils/hashutil.py @ 52109:b2e90465daf6

branching: merge stable into default
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Sat, 26 Oct 2024 04:16:00 +0200
parents f4733654f144
children
line wrap: on
line source

from __future__ import annotations

import hashlib

try:
    from ..thirdparty import sha1dc  # pytype: disable=import-error

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