Sakuya

Results 6 comments of Sakuya

This can be achieved through bash itself, see https://serverfault.com/questions/59262/bash-print-stderr-in-red-color/570651#570651

I used this script, also successfully reproduced, on cygwin on windows 10. Strangely though, if the proxy server is set, the cpu usage is normal. `c.setopt(aiocurl.PROXY, 'socks5h://127.0.0.1:1080')`

I found out that this is not the case with tornado's curl: https://www.tornadoweb.org/en/stable/httpclient.html ```python3 import asyncio from tornado.curl_httpclient import CurlAsyncHTTPClient async def do(): return await CurlAsyncHTTPClient().fetch('http://httpbin.org/delay/10') asyncio.run(do()) ``` The author...

I found the real cause, it's a known issue and tornado already has a fix. https://github.com/tornadoweb/tornado/blob/master/tornado/curl_httpclient.py#L121-L130 As a fix for this library: ```diff --- aiocurl.py +++ aiocurl-fix.py @@ -82,6 +82,9...

I briefly browsed the `sync`, and the others seem to be no different, just this one should be changed.

I recently switched from Cygwin to MSYS2 and I have the same problem, and this problem seems to be only on MSYS2, I don't experience it on any of the...