Results 646 comments of Nathaniel J. Smith

Ah, but that can be handled by the library too. On OS X, the splitting of large writes isn't an issue at all, since TCP_NOTSENT_LOWAT only affects select-and-friends, not send-and-friends....

But aside from the general annoyingness of having to effectively fork the template file to customize this, that commit (as noted in its commit message) breaks the feature of having...

Nice. Still, I think #66 is a bit easier to use :-)

It looks like urllib3 uses: ```python REDIRECT_STATUSES = [301, 302, 303, 307, 308] ```

It's possible to `pip install httpbin` and run it locally as part of your test suite.

@belm0 This exception is coming straight out of `trio.open_tcp_stream`, so not really asks's fault :-). Also, it's not a MultiError. If you look at the bottom of the traceback, the...

I don't see how this has anything to do with colorama? The exception is being raised by Python itself; colorama only shows up in the traceback because the output is...

> For those commenting here, could you also comment on why using an entrypoint that calls a pyo3/cffi function in the shared library doesn't work for you? My use case...