Thomas Moreau

Results 170 comments of Thomas Moreau

And again on python3.4 [here](https://ci.appveyor.com/project/tomMoral/loky/builds/20081069/job/h98r5h88t5c1sgq4) ``` tests/test_reusable_executor.py::TestExecutorDeadLock:: test_in_callback_submit_with_crash[func3-args3-TerminatedWorkerError-EXIT\\(0\\)] PASSED [ 72%] ERROR: InvocationError for command 'C:\\projects\\loky\\.tox\\py34\\Scripts\\py.test.EXE -vl --timeout=60 --maxfail=5 --skip-high-memory' (exited with code 3221226519) ```

Hello, You need to use the argument `kill_workers=True` in `shutdown` to immediately stop the workers on shutdown. ```python In [1]: from loky import get_reusable_executor ...: executor = get_reusable_executor(2) ...: ...:def...

I am not sure what behaviour you expect. could you please share a reproducible example? In your first snippet, you call `executor.map` which is non-blocking in the `try/catch` block, so...

I think to be able to interrupt only the work that were not schedule, you need to use the `cancel` method from `Future`. It seems that by the time `Ctrl+C`...

the interpolation curves give something like this: ![image](https://user-images.githubusercontent.com/3321081/161115336-26b38c45-9397-4284-9440-b09c09f24ed3.png) ![image](https://user-images.githubusercontent.com/3321081/161115456-5934a189-91dd-41a9-864b-9c682ab6d4f0.png)

When we construct the curve, we could probably store the information ('converged'). This way we could also add an option to only display 'converged' solvers and remove the last 3...

A quick question, would we be able to create a legend with HTML and JS from the HTML of the figure? ![image](https://user-images.githubusercontent.com/3321081/144026215-b4fe2c62-8972-4aa8-a626-414db0f10dd1.png) We could then simply emulate the legend with...

Do you have a clear list of the events that we need to keep (except toogle on/off). If it is just a toggle, we can simply emulate the events with...

Couldn't we emulate by simply "fowarding" the event ("emulating" the click/double click) to the right HTML element? On Wed, 1 Dec 2021 at 16:57, Tanguy Lefort ***@***.***> wrote: > There...

yeah, this is a tricky one; the `safe_import_context` needs to be called `import_ctx`. Not sure how to make this less error prone. One way would be to check if no...