- Apr 10, 2018
-
- Apr 09, 2018
-
-
Jakob Gerhard Martinussen authored
-
Ian Lee authored
-
Jakob Gerhard Martinussen authored
-
- Jan 19, 2018
-
-
Ian Lee authored
-
- Jan 18, 2018
-
-
Ian Stapleton Cordasco authored
-
- Sep 30, 2017
-
-
Jon Dufresne authored
From https://docs.python.org/3/whatsnew/3.6.html#new-keywords > async and await are not recommended to be used as variable, class, > function or module names. Introduced by PEP 492 in Python 3.5, they > will become proper keywords in Python 3.7. Starting in Python 3.6, the > use of async or await as names will generate a DeprecationWarning. By adding a warning to pycodestyle.py these future warnings and syntax errors can be caught during static code analysis. The await expression tests were taken from PEP-492. https://www.python.org/dev/peps/pep-0492/#id58
-
- Sep 10, 2017
-
-
Jon Dufresne authored
Starting with Python 3.6, invalid escape sequences in string literals are now deprecated. In a future version of Python, invalid escape sequences will be a syntax error. While this deprecation produces a runtime warning, it only appears if warnings are enabled and the first time the Python source is compiled to byte code. By adding a check to pycodestyle, projects can take advantage of static analysis to catch and fix these future syntax errors. For more information on the deprecation, see the Python release notes, https://docs.python.org/3/whatsnew/3.6.html#deprecated-python-behavior > A backslash-character pair that is not a valid escape sequence now > generates a DeprecationWarning. Although this will eventually become a > SyntaxError, that will not be for several Python releases. Fixes #633
-
- Feb 24, 2017
-
-
Ville Skyttä authored
-
- Jan 30, 2017
-
-
Ian Cordasco authored
Add release notes for 2.3.1 as well
-
- Jan 27, 2017
-
-
Ian Cordasco authored
-
- Dec 28, 2016
-
-
Łukasz Rogalski authored
-
- Nov 14, 2016
-
-
Ian Lee authored
Signed-off-by:
Ian Lee <IanLee1521@gmail.com>
-
Ian Lee authored
-
- Nov 04, 2016
-
-
Ian Lee authored
-
- Sep 29, 2016
-
-
Ian Lee authored
-
- Sep 21, 2016
-
-
Thomas Schultz authored
-
Thomas Schultz authored
-
- Sep 18, 2016
-
-
Thomas Schultz authored
-
- Jun 25, 2016
-
-
Ian Lee authored
-
Nikhil Benesch authored
-
Ian Lee authored
-
- Jun 07, 2016
-
-
Ian Lee authored
-
- Jun 02, 2016
-
-
Mike Miller authored
Check for prohibited identifiers occuring to the lhs of an assignment operator or after the 'as' keyword. Closes #341
-
- May 31, 2016
-
-
Ian Lee authored
-
Ian Lee authored
Closes #364
-
Ian Lee authored
In order to better high-light the name change, and backwards incompatibility. This also allows dependent tools (like flake8) to pin to `pycodestyle < 2.0` as a dependency while transitioning to the new package.
-
Ian Lee authored
-
Ian Lee authored
-
- May 29, 2016
-
-
Ian Lee authored
Updated references to pep8.readthedocs.io -> pycodestyle.readthedocs.io
-
Adam Chainz authored
As per their email ‘Changes to project subdomains’: > Starting today, Read the Docs will start hosting projects from subdomains on the domain readthedocs.io, instead of on readthedocs.org. This change addresses some security concerns around site cookies while hosting user generated data on the same domain as our dashboard. Test Plan: Manually visited all the links I’ve modified.
-
- May 25, 2016
-
-
Jakub Wilk authored
"allow" is a transitive verb, which requires an object, so "allow to <verb>" is ungrammatical.
-
- Feb 25, 2016
-
-
Ian Lee authored
-
- Feb 22, 2016
-
-
Ian Lee authored
-
- Feb 17, 2016
-
-
Ian Lee authored
-
- Jan 12, 2016
- Jan 11, 2016
-
-
Ian Lee authored
-
- Mar 18, 2015
-
-
Ian Lee authored
This fix reverts to the parsing of user config (~/.config/pep8), then local directory config files, and finally overrides with cli options as was the behavior back in 1.5.7
-
- Mar 13, 2015
-
-
Ian Lee authored
-