Yury Selivanov
Yury Selivanov
#### Target Python 3.6b3 #### Background In Python 3.6, `socket.close()` method will propagate any `OSError` from the underlying syscall (see [issue #26685](http://bugs.python.org/issue26685) for details.) What it means for alternative implementations...
I think I've figured out what's going on with `remove_signal_handler`. This PR fixes: * https://github.com/python/asyncio/issues/396 * http://bugs.python.org/issue23548 * http://bugs.python.org/issue28628
Long story short, one should never try to fork in a running event loop. Things that will break: 1. kqueue/epoll selectors will (likely) error with `EBADF` as soon as the...
I've seen a few discussions around lack of non-blocking file io support in asyncio. Normally, we assume that disk io is fast and doesn't block, but there are use cases...
I think we could package in a fallback module for `collections.abc` (similarly to what we do with `selectors.py`) to have better support for generators & coroutines compiled with Cython.
Currently, README states: > It includes support for both Python 2 and Python 3, and unlike any other Python syntax definition now fully supports Unicode identifiers anywhere in your code!...
Not sure what this means: ``` --auto-restart With --foreground stops server running in background. And restarts the service back on exit. ```
``` {edgedb} ~/d/e/edgedb-cli (master) » edgedb instance create --help edgedb-instance-create Initialize a new server instance ``` Instead of `edgedb-instance-create` it should say `edgedb instance create`
query: ``` SELECT schema::ObjectType { name, is_abstract, bases: { name, } ORDER BY @index ASC, pointers: { cardinality, required, name, target: { name, }, kind := 'link' IF @target IS...