tests/crashgetbundler.py
author Yuya Nishihara <yuya@tcha.org>
Sun, 09 Jun 2019 22:23:41 +0900
changeset 42457 43c8f72184f4
parent 30876 f3807a135e43
child 43076 2372284d9457
permissions -rw-r--r--
revset: fix merge() to fall back to changectx API if wdir specified I have a code which basically runs "0:wdir() & <user-revset>", and it crashed if merge() were passed in.

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)