Alexey Trofimov

Results 5 issues of Alexey Trofimov

Windows 10, pip 10, python 3.5 GCC drops an error during `pip install jamspell` on windows: `error: 'long int NJamSpell::MemStream::xsputn(const char*, long int)' marked 'override', but does not override` Building...

A valid DSN with two hosts eg: `postgresql://user:password@host1:port1,host2:port2/db?...` which is a valid postgres DSN format (https://www.postgresql.org/docs/10/libpq-connect.html) cannot be used with databases because of `urlsplit` parsing exception for port. Pure `asyncpg`...

Seems like minimal column width is based on column content, but sometimes it is much reliable not to wrap contenton border but to hide the rest of it. This also...

### Summary I use soft delete for my models, and i try to get instance with repo like this: ``` obj = await repo.get_one(id='id', deleted_at=None) ``` because i dont want...

enhancement

I have two instances of aiokafka producers with `enable_idempotence=True`. Each instance is producing messages using only `send_and_wait` method. Once in a while they start to throw `OutOfOrderSequenceNumber` and producing messages...

question