crusaderky

Results 129 comments of crusaderky

Adding mypy support will require completely redesigning how the Sphinx documentation for protocol.py works. 😭

Also they will break in Python 4.0 with PEP 563

`bind` needs to regenerate the keys because it's designed so that you can use the original and the bound keys together. e.g. x = cheap_computation_with_large_output() y = expensive_and_long_computation(x) z =...

Yes and no. I've been banging my head recently on state flickering in the very early stage of Worker.execute. I'm going to pick this up.

I can only reproduce this bug on Python 3.9 + pytest; pytest on python 3.8 is fine; pure python 3.9 is also fine for me. Windows 10 only; Ubuntu and...

Now I can reproduce it on Python 3.8 and 3.9, without pytest ``` # packages in environment at C:\Miniconda3\envs\demo: # # Name Version Build Channel argon2-cffi 20.1.0 py38h2bbff1b_1 async_generator 1.10...

The reproducer no longer works after #7036. ```python import time import dask import distributed client = distributed.Client(n_workers=4, threads_per_worker=1) root = dask.delayed(lambda n: "x" * n)(dask.utils.parse_bytes("1MiB"), dask_key_name="root") results = [dask.delayed(lambda *args:...

@fjetter as discussed. The implementation *should* be complete (save for bugs). An early review would be appreciated. Note that, unlike #6716, it does not address #6705 and should not require...

> The reduction of TaskStateStates causes the remaining states to gain a higher degree of degeneracy. I think this is a wild exxageration. It causes three transitions, exactly, to gain...