Mercurial > hg
view tests/crashgetbundler.py @ 48994:e45c39273395
pycompat: drop the pickle import
I suspect this is what df56e6bd37f6 meant to eliminate.
Differential Revision: https://phab.mercurial-scm.org/D12420
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Tue, 29 Mar 2022 23:34:18 -0400 |
parents | 6000f5b25c9b |
children |
line wrap: on
line source
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)