Lars Grüter

Results 496 comments of Lars Grüter

Tangential: In scikit-image we also have a similar decorator to replace positional arguments with keyword-only ones. : https://github.com/scikit-image/scikit-image/blob/bcec52560ba38981fbb0a05b92979fb840b2c712/src/skimage/_shared/utils.py#L216-L394 😄 ```python from skimage._shared.utils import deprecate_parameter, DEPRECATED @deprecate_parameter( "b", new_name="c", start_version="0.1", stop_version="0.3"...

Re who wrote it, you can find the repo and its author here https://github.com/olivierlacan/keep-a-changelog.

A related bug report to Cython: https://github.com/cython/cython/issues/7259

@eric-wieser Concerning the discussion in https://github.com/numpy/numpy/pull/15181#discussion_r361637225 and your other suggestions: You seem to be in favor of adding a new function (e.g. `arg_trim_zeros`) that returns indices to the zero area....

@eric-wieser what do you think of the currently proposed API? I'll add missing tests if you're happy with it and give a notice (required I think?) on the mailing list....

Thanks for the ping. I'm happy to pick this up again, though, not before next week. Once this is up to speed, I'm happy to join a meeting if that...

Alright, I rebased this. > Maybe coming to a meeting would also help us move this up the priority queue. Happy to attend a meeting, but I'm not sure which...

The test failures look unrelated to me, so from my side this is ready to review / merge. :)

@mattip Yes, I'll add a release note. :)

When trying to use `dask.compute(*X, scheduler="processes")` I get the following error: ``` RuntimeError: An attempt has been made to start a new process before the current process has finished its...