tests/crashgetbundler.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Tue, 21 Feb 2023 17:43:43 +0100
changeset 50121 15531d101313
parent 48875 6000f5b25c9b
permissions -rw-r--r--
dirstate: add small asserts for double security We don't need this, but it does not hurt.

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)