tests/crashgetbundler.py
author Yuya Nishihara <yuya@tcha.org>
Sat, 27 Jan 2018 17:31:25 +0900
changeset 35943 1a31111e6239
parent 30876 f3807a135e43
child 43076 2372284d9457
permissions -rw-r--r--
py3: always drop b'' prefix from repr() of bytestr Perhaps this is what we wanted for py2-3 compatibility.

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)