__init__.py
14 lines
| 431 B
| text/x-python
|
PythonLexer
r43924 | # 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): | ||||
r43979 | raise error.RevlogError(b'unknown node: %s' % x) | |||