Results 12 issues of Charles Leifer

Looks to not be working.

In the [database documentation](http://sophia.systems/v2.2/admin/database.html) it states: > Database can be created, opened or deleted before or after environment startup If I try to use a database after opening the environment,...

The documentation for 2.2 mentions that you can drop a database: http://sophia.systems/v2.2/admin/database.html > Database can be created, opened or deleted before or after environment startup. Besides the fact that it...

On the [task queues](http://www.fullstackpython.com/task-queues.html) page, the [huey library](https://github.com/coleifer/huey) is not described accurately. I'm the author of huey, and in the project [documentation](http://huey.readthedocs.org/en/latest/) I give the following description of huey: >...

This fixes an out-of-bounds lookup, which results in a segfault when popping/heapifying: ```diff diff --git a/src/pqueue.c b/src/pqueue.c index 0293922..875d40c 100644 --- a/src/pqueue.c +++ b/src/pqueue.c @@ -306,13 +306,13 @@ static void...

An eponymous virtual table is defined as a virtual table whose `xCreate` is the same as `xConnect` or `xCreate` is `NULL` ([docs](https://www.sqlite.org/vtab.html#epovtab)). From my reading of the apsw vtable source...

This library does not seem to be compatible with Python 3. There's an `isinstance` check that refers to `unicode`, which has changed to `str` in Python 3.

I noticed Xlib is no longer working after pulling in the latest commits from the last week or so. Traceback: ```python In [1]: from Xlib import display In [2]: disp...

I wonder what you think of adding a dedicated text type, which would be identical to the bulk-string, but would indicate UTF8-encoded unicode text as opposed to an arbitrary blob...

In a [project I've been hacking on](https://github.com/coleifer/greendb), a redis-like frontend for LMDB, I implemented and extended the Redis protocol with a few additional types. One of these I think may...