Seth Michael Larson
Seth Michael Larson
I'm imaging a situation where your API takes a callable from the user and you'd like to support both `Union[Callable[[...], X], Callable[[...], Awaitable[X]]]` on the async implementation but only support...
An example where this would be useful in Hip: When given a body that has `read()` we want to call `await f.read()` for async files and `f.read()` on sync files.
Also `anext()` would be useful in a similar place in Hip for generating the async iterators of bytes to send.
Multi-token replacements are a little more complex, but if you want a workaround for this now you can use the following: ```python # pytest marks pytest_mark_trio = pytest.mark.trio def pytest_mark_sync(f):...
That'd be great, thanks!
@pradyunsg This is definitely on my list. Thanks for tagging me on an existing issue! 🚀
@ewdurbin I think in a perfect world we end up with everything under `/downloads/` and redirect the old URLs to the new? I don't know how the CMS interacts with...
@ewdurbin Those routes work for me! Thanks :)
@surfaceowl I'm not aware of any tooling that allows converting between the different formats, although I wouldn't be surprised if it exists. We'll select our format based on some criteria...
I would like to provide checksums that aren't MD5 (in addition to making the Sigstore verification steps more visible). Back-filling the correct values is in progress (cc @woodruffw) since we...