Adam Johnson
Adam Johnson
Using an `os.exec*` function, when available (Unix, Windows) will replace the Python wrapper process, rather than keeping it around until zig has finished. This saves memory and makes processes easier...
I use pyenv, but I've heard about asdf, and was researching to see if it was worth changing. I had heard asdf supported Python, but when I followed the latest...
* Use 'profile = black' rather than handcrafted configuration: https://pycqa.github.io/isort/docs/configuration/profiles/ * Remove depreacted `--recursive` flag, which is now the default
Fixes #14.
Using GitHub Actions, my projects use one CI run per Python version. Within these runs I'd want to run just the environments matching the current Python version. I currently do...
When running `ansigenome export` on my project I get: ``` contains 1 or more syntax errors: could not determine a constructor for the tag '!vault' in "", line 15, column...
I just finished upgrading my similar package [apig-wsgi](https://pypi.org/project/apig-wsgi/) to support v2. I used this library as reference. On the way I spotted a bug - the `set-cookie` header in responses...
I tend to use IPython shell examples rather than the plain Python console, and I'd like blacken-docs to format them, e.g. ```diff .. code-block:: ipython - In [1]: print('Hello World')...
`detect-test-pollution` seemed to hang the first time I ran it. I had left in a `breakpoint()` like a dummy, but with no output I couldn't see this. Perhaps output could...