tests/crashgetbundler.py
author Yuya Nishihara <yuya@tcha.org>
Sun, 29 Jul 2018 22:07:42 +0900
changeset 39598 42209f55c599
parent 30914 f3807a135e43
child 43076 2372284d9457
permissions -rw-r--r--
templatekw: keep status tuple in cache dict and rename cache key accordingly There's no point to drop tail elements, which are mostly empty lists.

from __future__ import absolute_import

from mercurial.i18n import _
from mercurial import (
        changegroup,
        error,
        extensions
    )

def abort(orig, *args, **kwargs):
    raise error.Abort(_('this is an exercise'))

def uisetup(ui):
    extensions.wrapfunction(changegroup, 'getbundler', abort)