Jason Fried
Jason Fried
I have a local lmdb.pyi to make pylance (pyright) happy, but it only has the stuff I use. The hardest part was `Cursor.iternext` because it changes the return type based...
Can we get a new source releases on pypi with .c code generated by a more modern cython to support python >=3.7? It doesn't have to be a new version...
Only after Python 3.6 but you can use os.fsencode(bytes/str/Path) -> bytes Would have to do it in connections.py
you could make a asyncio handler that returned asyncio future subclass async result. As long as you only call the async method names you can yield from them because they...
There is no reason to use yield from inside kazoo distributed code, just use the callback interface of asyncio. That way trollius people can also use it.
Trollius is a dead project, the author has abandoned it as un-workable. On Thu, Jun 1, 2017 at 3:15 PM Ben Bangert wrote: > I'd like to move to using...
`init_websocket` internally takes the default eventloop and expects to run it. This may not be what you or I expect. But it means the current event loop has to not...
I was looking at this also we should definitely be able to figure out the arguments from the api definition.
The problem with this implementation of column families is that in the latest rocksdb holding a handle to a column family and closing the DB will cause an assert failure...
I have had similar issues with non extern cdef functions that return unique_ptr. I have to produce my own definition for make_unique that doesn't include the except+. Otherwise the exception...