Mercurial > public > mercurial-scm > hg
view mercurial/revlogutils/__init__.py @ 43809:51a99e09c54b
fuzz: always define LLVMFuzzerInitialize() even if we don't need it
This will make it easier to test our fuzzers outside oss-fuzz.
Differential Revision: https://phab.mercurial-scm.org/D7560
author | Augie Fackler <augie@google.com> |
---|---|
date | Fri, 06 Dec 2019 15:05:34 -0500 |
parents | 9e1932eb41f9 |
children | ab595920de0e |
line wrap: on
line source
# mercurial.revlogutils -- basic utilities for revlog # # Copyright 2019 Pierre-Yves David <pierre-yves.david@octobus.net> # # This software may be used and distributed according to the terms of the # GNU General Public License version 2 or any later version. from __future__ import absolute_import from .. import error class NodeMap(dict): def __missing__(self, x): raise error.RevlogError(b'unknown node: %s' % x)