Alexandre Poux

Results 11 comments of Alexandre Poux

I think it causes also some problems with jupyter notebooks. ``` error: `ba` should be `by`, `be` --> jupyter.ipynb:661:11 | 661 | "id": "6ba7c279", | ^^ | error: `ba` should...

There is also all the this2that and thing4stuff

You are right about the behavior of the code. I don't see any way to enhance that in the general case. Maybe, in your case, rechunking before interpolating might be...

Here is a working version: ```python import numpy as np import dask.array as da import matplotlib.pyplot as plt x = da.from_array(np.linspace(0, 10, 20), chunks=3) y = da.from_array(np.sin(np.linspace(0, 10, 20)), chunks=5)...

I'm not sure that it would solve anything. Any solution to limit the duplication of x and y would involve something similar to `map_overlap` and would require something to take...

Hi, it would be nice to know how refurb is different from pyupgrade https://github.com/asottile/pyupgrade

I'm also willing to test (nvidia shield)

Any news? Is it possible to help ?

I also have the problem of the streaming ready screen also appearing instead of just starting the game. Moreover the controller cannot close it, I have to use a mouse...

Hi, I'm sure you are considering it, but allow me this warning. For mutable types, inplace operators are not equivalent to normal operators for exemple: ```python a=[] b=a a+= [1]...