Fantix King

Results 216 comments of Fantix King

> > UPDATE: we decided to use plain Python list for edgedb.Set and edgedb.Array, so the query results will be partially mutable, but again that's just in user memory. >...

0.17.0 is now out, could you please also give it a try? The source tarball was built on Ubuntu 22.04 which has [autotools-dev](https://packages.ubuntu.com/jammy/autotools-dev) 20220109.1, which is the same as it...

Because the question is not uvloop-related, I’ll just use Chinese. And I’m closing the issue as it is confirmed fixed in 0.17. Feel free to continue the discussion. 您是说 PyPI...

Right, 0.17 didn't change this. This would probably be similar in CPython 3.11 too. I'll look into this later this weekend.

Thanks for the very detailed reply and sorry for the delay! I think we should do (1) for TLS 1.2 and lower to "conform with widespread implementation practice", and cut...

Actually I got a new idea. We can implement the `SSLTransport.write_eof()` method and move the two-way shutdown there, while changing the behavior of `SSLTransport.close()` to one-way shutdown to meet the...

Proposed shutdown flow: ![sslproto_full-Shutdown drawio](https://user-images.githubusercontent.com/1751601/193481113-669eee24-fa68-431b-97c0-2d3255e55ee8.png) So basically user could now 1) call `write_eof()` (and expect to receive more TLS data), or 2) return different values in `eof_received()`. Specifically in (2),...

哈哈,哪里哪里🤓谢谢 You may notice 2 `eof_received()` in the diagram, the green one is the one you mentioned in `SSLProtocol`, while the red one is a user-provided protocol implementation inheriting directly...