hgext/fastannotate/support.py
changeset 48946 642e31cb55f0
parent 48875 6000f5b25c9b
child 50774 8dc2724d0304
equal deleted inserted replaced
48945:55d132525155 48946:642e31cb55f0
    20     context,
    20     context,
    21     revmap,
    21     revmap,
    22 )
    22 )
    23 
    23 
    24 
    24 
    25 class _lazyfctx(object):
    25 class _lazyfctx:
    26     """delegates to fctx but do not construct fctx when unnecessary"""
    26     """delegates to fctx but do not construct fctx when unnecessary"""
    27 
    27 
    28     def __init__(self, repo, node, path):
    28     def __init__(self, repo, node, path):
    29         self._node = node
    29         self._node = node
    30         self._path = path
    30         self._path = path