tests/crashgetbundler.py
author Gregory Szorc <gregory.szorc@gmail.com>
Sun, 20 Feb 2022 15:47:13 -0700
changeset 48816 824b2082550e
parent 43076 2372284d9457
child 48875 6000f5b25c9b
permissions -rw-r--r--
cext: remove Python 2 support We still alias the Python 2 symbols. This will be cleaned up in a separate commit. Differential Revision: https://phab.mercurial-scm.org/D12227

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)