view tests/crashgetbundler.py @ 39948:5ee3146c1b20

py3: byteify test-lock.py There's still a stacktrace about not being able to serialize _io.TextIOWrapper.
author Matt Harbison <matt_harbison@yahoo.com>
date Mon, 01 Oct 2018 21:54:00 -0400
parents f3807a135e43
children 2372284d9457
line wrap: on
line source

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)