tests/crashgetbundler.py
author Boris Feld <boris.feld@octobus.net>
Fri, 27 Oct 2017 18:19:07 +0200
branchstable
changeset 34932 fd78276948b4
parent 30876 f3807a135e43
child 43076 2372284d9457
permissions -rw-r--r--
internal-doc: document the config register mechanism This explains the various usage and feature of the config register introduced in Mercurial 4.3 and 4.4.

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)