tests/crashgetbundler.py
author Yuya Nishihara <yuya@tcha.org>
Wed, 08 Mar 2017 22:30:12 +0900
changeset 31253 64596338ba10
parent 30914 f3807a135e43
child 43076 2372284d9457
permissions -rw-r--r--
py3: factor out bytechr() function I also changed xrange(127) to range(127) as the number is relatively small.

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)