tests/crashgetbundler.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Sun, 14 Apr 2024 02:41:36 +0200
changeset 51616 ecf4b959fa74
parent 48966 6000f5b25c9b
permissions -rw-r--r--
perf: start recording total time after warming The warming might be costly and this should not affect the "time profile" of the actual collection.

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)