Fantix King

Results 216 comments of Fantix King

Got some time today to reformat my SD card and install Debian on my Raspberry Pi 400 (kernel `5.10.0-7-arm64`, Python 3.9.2). Like your RPi4, `test_remote_shutdown_receives_trailing_data (tests.test_tcp.Test_AIO_TCPSSL)` passed for me too,...

No luck - all tests passed. And the stack info is not really telling a lot. I think it should be safe to disable in your case, as `test_remote_shutdown_receives_trailing_data (tests.test_tcp.Test_AIO_TCPSSL)`...

Thanks for the PR! I renamed the env to `UVLOOP_OPT_CFLAGS`

I think we can drop this hack now, as `test_suite` is already dropped in `setup.py`, refs #84

Hey sorry for the delay! I talked to Yury and I'm convinced that this new API could have arguably different designs, and it's preferred to be a user-space extension of...

@jensbjorgensen We changed our mind - let's move forward with this PR! I'll probably just push a few commits to make the API private, drop the [partially-implemented](https://github.com/libuv/libuv/issues/1778) `recursive` flag, and...

Thanks for the PR and comments! The first commit was actually pretty clear: https://github.com/MagicStack/uvloop/commit/2c61d5d3831676a04a33b117e77b782491cd6765#diff-a7cf5c98d355cbec45134d87daf36ebe5dea13c052e6098ca5331fedebfd6b8cR704-R712 So I think we should do: ```python addrinfo = addrinfo.ai_next continue ``` rather than a single...

You're actually talking about multiple issues. 1. `UDPTransport` should raise errors if used after `connection_lost()` is called. 2. `UDPTransport.sendto(DATA, (IP, 0))` would silently close the transport. 3. I'm not sure...

From the stack, it looks like it's either we used libuv in the wrong way, or we ran into some bug in libuv. Given that this one is very similar...