Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • pycqa/pep8-naming
1 result
Show changes
Commits on Source (2)
Changes
=======
 
0.5.0 - 2018-01-02
------------------
* Add configurable list of classmethod and staticmethod decorators
* Print the offending name as part of the error message
* Correct N804/N805 for __init_subclass__
0.4.1 - 2016-06-26
------------------
 
Loading
Loading
Loading
Loading
@@ -12,7 +12,7 @@ try:
except ImportError:
from flake8.util import ast, iter_child_nodes
 
__version__ = '0.4.1'
__version__ = '0.5.0'
 
LOWERCASE_REGEX = re.compile(r'[_a-z][_a-z0-9]*$')
UPPERCASE_REGEX = re.compile(r'[_A-Z][_A-Z0-9]*$')
Loading
Loading