@@ -7,46 +7,46 @@ UNRELEASED
77New checks:
88
99* Add W504 warning for checking that a break doesn't happen after a binary
10- operator. This check is ignored by default.
11- * Add W605 warning for invalid escape sequences in string literals.
10+ operator. This check is ignored by default. PR #502.
11+ * Add W605 warning for invalid escape sequences in string literals. PR #676.
1212* Add W606 warning for 'async' and 'await' reserved keywords being introduced
13- in Python 3.7.
13+ in Python 3.7. PR #684.
1414* Add E252 error for missing whitespace around equal sign in type annotated
15- function arguments with defaults values.
15+ function arguments with defaults values. PR #717.
1616
1717Changes:
1818
1919* An internal bisect search has replaced a linear search in order to improve
20- efficiency.
20+ efficiency. PR #648.
2121* pycodestyle now uses PyPI trove classifiers in order to document supported
22- python versions on PyPI.
22+ python versions on PyPI. PR #654.
2323* 'setup.cfg' '[wheel]' section has been renamed to '[bdist_wheel]', as
24- the former is legacy.
24+ the former is legacy. PR #653.
2525* pycodestyle now handles very long lines much more efficiently for python
26- 3.2+. Fixes #643.
26+ 3.2+. Fixes #643. PR #644.
2727* You can now write 'pycodestyle.StyleGuide(verbose=True)' instead of
2828 'pycodestyle.StyleGuide(verbose=True, paths=['-v'])' in order to achieve
29- verbosity.
29+ verbosity. PR #663.
3030* The distribution of pycodestyle now includes the license text in order to
31- comply with open source licenses which require this.
32- * 'maximum_line_length' now ignores shebang ('#!') lines.
31+ comply with open source licenses which require this. PR #694.
32+ * 'maximum_line_length' now ignores shebang ('#!') lines. PR #736.
3333* Add configuration option for the allowed number of blank lines. It is
3434 implemented as a top level dictionary which can be easily overwritten. Fixes
35- #732.
35+ #732. PR #733.
3636
3737Bugs:
3838
3939* Prevent a 'DeprecationWarning', and a 'SyntaxError' in future python, caused
40- by an invalid escape sequence.
40+ by an invalid escape sequence. PR #625.
4141* Correctly report E501 when the first line of a docstring is too long.
42- Resolves #622.
42+ Resolves #622. PR #630.
4343* Support variable annotation when variable start by a keyword, such as class
44- variable type annotations in python 3.6.
44+ variable type annotations in python 3.6. PR #640.
4545* pycodestyle internals have been changed in order to allow 'python3 -m
46- cProfile' to report correct metrics.
47- * Fix a spelling mistake in the description of E722.
46+ cProfile' to report correct metrics. PR #647.
47+ * Fix a spelling mistake in the description of E722. PR #697.
4848* 'pycodestyle --diff' now does not break if your 'gitconfig' enables
49- 'mnemonicprefix'.
49+ 'mnemonicprefix'. PR #706.
5050
51512.3.1 (2017-01-31)
5252------------------
0 commit comments