CoolCat467
CoolCat467
Changed entire file's indentation from 3 spaces to 4 spaces, the default of all python files. Fixed some formatting after indent modification Changed big comment block at the start of...
Remove EvilZipStreamWraper and therefore closes #3, as it appears to have no use now in Python 3. Zipfile seems to have gotten their act together or something. Change attachment filename...
**Crash Report** Basically, I am trying to program a game with the Trio asynchronous library. Using the mypy daemon and type checking different files makes it crash. Trying to make...
This is not a runtime bug but a typing issue. In `flask.typing`, `ResponseValue` does not accept `AsyncIterator[str]`. I am using `quart-trio`, which itself uses `quart`, which uses `flask`. `quart.templating.stream_template` returns...
This pull request updates the code coverage action to v4 Reading the [release details](https://github.com/codecov/codecov-action/releases/tag/v4.0.0), it looks like they update node runtime thing, drop support for not telling them the token...
This pull request follows up on #2956 and is attempting to switch the continuous integration system to use astral.sh' new tool [uv](https://astral.sh/blog/uv).
This pull request follows up on #2956 and is attempting to switch the continuous integration system to use astral.sh' new tool [uv](https://astral.sh/blog/uv). This particular pull request is a subset of...
> Gah, well see the segfaults don't exactly provide much information... But I agree that it's annoying. At this point ig we might as well make an issue here (on...
This PR exposes `_file_io.AsyncIOWrapper` to the public. I was working on a project of mine that has to use `trio.wrap_file` and calls a few functions that needed to take the...
`uv pip compile` does not respect [PEP-508 Environment Markers](https://peps.python.org/pep-0508/#environment-markers) (such as `; implementation_name ==`). ```console > uv --version uv 0.1.11 ``` For example, we have `test-requirements.in`: ``` black; implementation_name ==...