##// END OF EJS Templates
dispatch: disable line ending normalization on sys.stdin if its None...
dispatch: disable line ending normalization on sys.stdin if its None Fixes test-chg.t on python 3 with chg. Differential Revision: https://phab.mercurial-scm.org/D9501

File last commit:

r44516:7126d8b8 default
r46700:7e1b4154 default
Show More
hashutil.py
10 lines | 183 B | text/x-python | PythonLexer
Augie Fackler
hashutil: new package for hashing-related features...
r44516 from __future__ import absolute_import
import hashlib
try:
from ..thirdparty import sha1dc
sha1 = sha1dc.sha1
except (ImportError, AttributeError):
sha1 = hashlib.sha1