tests/crashgetbundler.py
author Gregory Szorc <gregory.szorc@gmail.com>
Sat, 02 Nov 2019 11:48:38 -0700
branchstable
changeset 43379 bb509f39d387
parent 43076 2372284d9457
child 48875 6000f5b25c9b
permissions -rw-r--r--
contrib: require Python 3.6 for byteify-strings.py This script makes use of `token.COMMENT`, which apparently isn't present until Python 3.6. So make the script and its test conditional on Python 3.6.

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)