Ben Bariteau
Ben Bariteau
This fixes the current issue where the docker client doesn't respect `DOCKER_HOST`, which is used as a alternative to the docker socket. This is required by kubernetes jenkins.
### Describe the bug This package doesn't include an sdist on public PyPI. We build our own wheels internally, but that's only possible if we have the sdist to build...
## What would you like to be added Type annotations ## Why is this needed For using this library with a typechecker
When using the "map" fixer, if a the `map` call takes multiple iteratables, then it uses `six.moves.map`, which changes behavior if the iterables are of different length. Specifically, if one...
flake8 has "noqa", it would be nice if there were something similar for python-modernize. This is especially a problem for some of the heuristic based fixers (e.g. dict_six operates on...
given ``` print('foo') ``` the `print` fixer will change it to: ``` print(('foo')) ``` While not incorrect, it's definitely a little odd.
Given: ``` from foo import urllib ... urllib.unquote(...) ``` The following transformation occurs: ``` six.moves.urllib.parse.unquote(...) ```
Given the following code: ``` raise(Exception('foo')) ``` The `raise` fixer changed it to: ``` raise Exception ``` Which is definitely incorrect.