Yury V. Zaytsev
Yury V. Zaytsev
> It includes wording similar to the POSIX's _providing options and by limiting the returned information_, which IMO suggests that the hints indeed _limit_ the resulting list compared to the...
Well, I considered opening a PR for eventlet instead, and fixing their implementation of `getaddrinfo`: https://github.com/eventlet/eventlet/blob/8bac9b2bb5ba02d42305446327a117ff51af177b/eventlet/support/greendns.py#L545 but it was not obvious to me how to fix it, unlike in the...
> If the Solaris port of CPython does not implement the correct behavior for this function then the bug is with the Solaris port. I opened python/cpython#123832 with an explanation...
> This is not an invalid use of getaddrinfo. This is from the Python [official docs](https://docs.python.org/3/library/socket.html#socket.getaddrinfo) Hi @miguelgrinberg, the discussion with the CPython developers is now concluded, and the bottom...
> This looks like a duplicate of #332 Sorry about that! I should have searched for other PRs before opening mine. As far as I'm concerned, it doesn't really matter...
This is Mobile Safari (probably using desktop mode for rendering?):  The rendering is questionable and the ribbon is misplaced, but this problem is not there. I looked at the...
I wrote a sync version based on @Midnighter's code: ```python class RateLimitedTransport(httpx.BaseTransport): def __init__(self, *, limiter: Limiter, transport: httpx.BaseTransport, **kwargs): super().__init__(**kwargs) self._limiter = limiter self._transport = transport @classmethod def create(...
> @zyv I had it on my mind to add a sync version, too, but I wanted to wait for a compelling use-case. What's your application today? Do you use...
> We need to do some design work around this still and reach consensus internally. We're focusing on stabilizing the formatter first. The documentation still says this is "planned" for...
> these core ruff issues have been postponed - hopefully not abandoned. Thanks for the update, this is really helpful for those trying to understand the status of the issue....