A5rocks
A5rocks
It looks like v3 of the Sphinx docs was pulled? This link certainly works: https://www.sphinx-doc.org/en/master/usage/extensions/example_google.html#example-google-style-python-docstrings ~~I think we should probably check the old link 404ing is intentional.~~ It must have...
I believe attrs itself sets the attributes on init (it has to somehow) via `object.__setattr__(self, 'attribute name', value)`. We could use that? ```py >>> import attrs >>> @attrs.frozen ... class...
Alternatively, we can fix this upstream? IE attrs (if it detects that you're making an exception in auto_exc=True mode, which is the default, and if you're frozen) could allow certain...
Huh I don't know why my brain went dataclasses -> attrs. Oops! > I'd be happy to entertain a Trio PR that grabs the descriptors for `BaseException.__traceback__` and `BaseException.__context__`, and...
I've mentioned the CFFI install failure over at https://foss.heptapod.net/pypy/pypy/-/issues/4005 and I thought the issue sounded like they were already fixing that, but I welcome looking at that more.
Possibly? We don't have CI for pypy on windows (or macos) atm
For a bit of context this has been discussed on the Gitter a bit (regarding nogil specifically) and the conclusions from that seem to be that trio makes the wrong...
We probably just have to bump our cryptography requirement.
Seems fine to subsume this into the general CI megaissue if it's a basic issue/just a matter of updating matrix and seeing what breaks (if we don't know if this...
I think this would be helpful. Given that debugging tools seem to be in `trio.lowlevel` typically, should this go there too?