tests/crashgetbundler.py
author Gregory Szorc <gregory.szorc@gmail.com>
Thu, 03 Mar 2022 07:59:42 -0800
changeset 48871 79009cca491e
parent 43076 2372284d9457
child 48875 6000f5b25c9b
permissions -rw-r--r--
pycompat: remove large Python 2 block We no longer support Python 2. So we can delete its compatibility code and remove the conditional and dedent the Python 3 code. In order to make the linter happy, we had to inline imports in the stanza at the top of the file. Differential Revision: https://phab.mercurial-scm.org/D12250

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)