Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Dockerfile changes
PEP8 Changelog
2.2.0 (2016-11-14)
Bugs:
Fix E305 regression in 2.1.0 due to fix for #400 PyCQA/pycodestyle#593
2.1.0 (2016-11-04)
Changes:
Report E302 for blank lines before an "async def" PyCQA/pycodestyle#556
2.7, 3.2, 3.3, 3.4 and 3.5 as well as the nightly Python build and
PyPy.
or 'I'.
prohibited single-letter variables.
[pep8]
section name in favor of[pycodestyle]
;Check for both [pep8] and [pycodestyle] config sections. PyCQA/pycodestyle#591
Bugs:
Choice type parameters raise AssertionError for config files PyCQA/pycodestyle#561
Fix Issue 400: Require two blank lines after toplevel def, class PyCQA/pycodestyle#536
colons. This will make pycodestyle faster in some cases;
Fixing compound_statement not to be quadratic in # of :s PyCQA/pycodestyle#314
2.0.0 (2016-05-31)
Changes:
from ... import ...
lines;complain about missing space before opening parentheses of import statement PyCQA/pycodestyle#489 / complain about missing space before opening parentheses of import statement PyCQA/pycodestyle#491
Update handling of breaking around binary operators: W503 vs W504 PyCQA/pycodestyle#498
.pep8
configuration file;Remove deprecated .pep8 config file PyCQA/pycodestyle#364
Bugs:
~
operator as binary; Fix problem with treating ~ operator as binary. PyCQA/pycodestyle#383/ Tilde is treated as binary operator PyCQA/pycodestyle#384
-
reporting as W503 PyCQA/pycodestyle#484 /Identify binary operators used as unary operators PyCQA/pycodestyle#485
1.7.0 (2016-01-12)
Changes:
line are only ones accepted" feature. This has many unintended
consequences in pep8 and flake8 and needs to be reworked when I have
more time.
fix BytesWarning on Python 3 PyCQA/pycodestyle#459)
Multi-line ignore parsing in config_file PyCQA/pycodestyle#429)
Correct _get_parameters. PyCQA/pycodestyle#456)
Bugs: