mskoenz
mskoenz
Awesome package, thanks! Implementation and blog are really nice! But the dill / serialization problem is quite nasty especially if one needs to scale a computation with multiprocessing_on_dill or concurrent.futures...
Tested (python3.6, OSX): ``` import wrapt @wrapt.decorator def pass_through(fct, instance, args, kwgs): print("doing nothing") return fct(*args, **kwgs) @pass_through def echo(x): return x print(echo("Hello")) import dill dill.loads(dill.dumps(echo)) ``` (in a new...
on a similar note (apologies if I missed it in the docs), qtbot hangs if itemClicked signals are emitted directly: My case was a QListWidgetItem, which I triggered manually (leading...
This fix would be helpful, I currently use the workaround from @wouter-vdb ```python # see: https://github.com/pytest-dev/pytest-django/issues/993 @pytest.fixture(scope="function", autouse=True) def _dj_autoclear_mailbox() -> None: pass ```