nunupeke

Results 4 issues of nunupeke

### What happened? ```python da = xr.DataArray(np.random.rand(4), {'x': np.arange(4)}) da = da.assign_coords(y=('x', np.linspace(0, 1, 4))) da = da.assign_coords(z=('x', np.arange(4) + 4)) da.set_index(x=["y", "z"]).sel(y=slice(None, 0.5)) ``` fails with ``` TypeError: float()...

bug
topic-indexing
regression

The following example from the docs gives me a type error using `mypy`: ```python from pint import UnitRegistry ureg = UnitRegistry() Q_ = ureg.Quantity Q_(1.78, ureg.meter) ``` The corresponding `mypy`...

bug
typing

```python import numpy as np from pint import UnitRegistry ureg = UnitRegistry() a = np.arange(4) q = np.ones(4)*ureg.mm np.dot(a, q) ``` gives me ``` AttributeError: 'numpy.ndarray' object has no attribute...

VS Code allows dragging editor tabs out of the main window, which creates a new floating window (e.g. for putting it on a second screen). It appears that tail mode...

bug