Chris O'Hara

Results 31 comments of Chris O'Hara

It sure is. PRs are welcome! There's some work on a py3 fork here: https://github.com/wolfhechel/gauged/tree/py3

Thanks for working on this, and yes I'd absolutely accept a PR. I've been meaning to move to tox so there's no problem there. I'm happy to accept any necessary...

Looks good so far. A couple of questions: - why duplicate tests under `tests/py3`? Are there incompatibilities there that can't be resolved? - where does `ez_setup.py` come from? It feels...

Fair enough regarding tests, but once we can assert that no regressions have been introduced with py2 then I'd like to merge them; it's too hard maintaining two sets. Where...

No problem, and thanks.

Thanks for the update. It's a bit of a nightmare migrating projects that rely on bytes :expressionless:

It sounds like the drivers are different enough that you'll need to push down logic from `context.py` into the drivers. I'm totally happy with that, and if `memoryview` is the...

Anything unicode should be explicitly encoded with utf-8 as soon as possible, well before the key reaches the driver, and then string comparisons should be done with bytes vs. bytes.

Yeah we should probably return unicode keys then.