Yury Selivanov
Yury Selivanov
Specifically two event loop methods are still missing: * `loop.sock_sendfile(..)` * `loop.sendfile(..)` Both were added to asyncio 3.7.
To-do: * [ ] `test_create_connection_ssl_1` hangs * [ ] a bunch of DNS tests fail (likely different error messages) * [ ] one of UDP tests is failing Major things:...
This is a meta issue to discuss how new asyncio tracing API should look like. We will implement it first in uvloop, and later, if necessary, port it to asyncio....
(self-assigning this)
`schema::Migration` should be read-only. Currently it allows `DELETE` (and `INSERT` seems to be allowed to as long as you can compute the hash, I think). We should prohibit any modifications...
`Object.__hash__` takes into account all fetched pointers, essentially the hashing is similar to tuples. `Object.__eq__` and other compare operators compare by object's EdgeDB ID.
This topic was originally brought up in PR #297. `StreamReader` class allows to implement protocols parsers in a very convenient way already. Instead of managing buffers and callbacks, one can...
This PR adds two new APIs: `asyncio.run()` and `asyncio.run_in_executor()`. Ideally, if possible, I'd like to have them in 3.6. If I have a green light on the idea, I'll update...