Itamar Turner-Trauring

Results 335 issues of Itamar Turner-Trauring

Unit tests, at least, would find it useful to list destinations - see code `eliot/test/test_twisted.py` that could be cleaned up given such an API.

enhancement

On case-insensitive filesystems one could run `Trial thing`, Windows probably has `trial.py`... and in these cases `redirectLogsToTrial()` won't detect the program is running under Trial. A more robust method would...

The example given in docs is: ``` [bumpversion:file:requirements.txt] search = MyProject=={current_version} replace = MyProject=={new_version} ``` However that will result in a line `MyProject==MyProject==1.2.3`.

Hi, I want to move some code from https://github.com/warner/foolscap/blob/master/src/foolscap/crypto.py into Tahoe-LAFS. Since @warner you appear to be the sole author, are you willing for it to be relicensed under the...

On Python 2, JSON would happily encode byte strings, so long as they were ASCII at least. In Python, the `json` module knows nothing about bytes. In Tahoe-LAFS, there is...

Tahoe-LAFS is being ported to run on both Python 2 and 3 at same time; eventually the former will be dropped, but for now it's both. We're adding `from __future__...

* aiocontextvars version: 0.2.2 * Python version: 3.5.2 * Ubuntu Xenial LTS Original bug report: https://github.com/matrix-org/synapse/issues/5199 ### Description On Ubuntu Xenial supported Python 3.5 is 3.5.2. On Python 3.5.2 `asyncio`...

**Is your feature request related to a problem? Please describe.** The `DATABASE_URL` environment variable is standard in many environments for specifying how to connect to the database. It would be...

I have found myself creating statics that are accessed only by threads that have the GIL. As such, use of a normal Mutex is unnecessary performance overhead (and this matters...

enhancement
needs-design