tests/crashgetbundler.py
author Martin von Zweigbergk <martinvonz@google.com>
Sat, 18 Aug 2018 00:01:31 -0700
changeset 39216 ec6d5a9d1631
parent 30914 f3807a135e43
child 43076 2372284d9457
permissions -rw-r--r--
index: don't include nullid in boundary check in pure code Yet another change that should probably have been part of a3dacabd476b (index: don't allow index[len(index)] to mean nullid, 2018-07-20). Differential Revision: https://phab.mercurial-scm.org/D4333

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)