Nicholas Smith
Nicholas Smith
Ah, this might be a mistake, perhaps we can allow `a` mode? Though, with `a` we can only append. I'm not sure what the comment `update "+" mode removed for...
> TypeError: 'ServerDisconnectedError' object is not subscriptable This might be the same as https://github.com/scikit-hep/uproot5/issues/1233
Here is a self-contained pickleable ssl context class: ```python import os import ssl import tempfile from typing import Any class PickleableSSLContext(ssl.SSLContext): @classmethod def create(cls, protocol=ssl.PROTOCOL_TLS_CLIENT): out = cls(protocol) out._set_default_state() return...
FYI https://github.com/scikit-hep/fsspec-xrootd/releases/tag/v0.5.1
For sure the `sqrt` method _should_ be using variances (`sumw2`), so that's a bug. As for the rest of the plumbing, there is some attempt to do scaled Poisson in...
@riga is what you see perhaps coming from the "scaled poisson" Garwood interval? > When a bin is zero, the scale of the nearest nonzero bin is substituted to scale...
I had hoped that the `ak.bundle` function signature would require the user to specify exactly what can be assumed about the broadcast-compatibility and ultimate layout expected of the result of...
I have a similar issue: the rich progress bar does not update anymore in VSCode jupyter notebook rendering. Downgrading ipykernel fixed it: ``` - ipykernel==7.0.1 + ipykernel==6.31.0 ```