mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-29 10:36:53 +00:00
Merge branch 'pyflakes_new_codes' into 'master'
Update to pyflakes 2.0.0 Closes #422 See merge request pycqa/flake8!239
This commit is contained in:
commit
eb6228b660
4 changed files with 10 additions and 2 deletions
|
|
@ -54,6 +54,9 @@ generates its own :term:`error code`\ s for ``pyflakes``:
|
|||
+------+---------------------------------------------------------------------+
|
||||
| F707 | an ``except:`` block as not the last exception handler |
|
||||
+------+---------------------------------------------------------------------+
|
||||
| F721 | doctest syntax error |
|
||||
| F722 | syntax error in forward type annotation |
|
||||
+------+---------------------------------------------------------------------+
|
||||
+------+---------------------------------------------------------------------+
|
||||
| F811 | redefinition of unused ``name`` from line ``N`` |
|
||||
+------+---------------------------------------------------------------------+
|
||||
|
|
@ -69,6 +72,9 @@ generates its own :term:`error code`\ s for ``pyflakes``:
|
|||
+------+---------------------------------------------------------------------+
|
||||
| F841 | local variable ``name`` is assigned to but never used |
|
||||
+------+---------------------------------------------------------------------+
|
||||
+------+---------------------------------------------------------------------+
|
||||
| F901 | ``raise NotImplemented`` should be ``raise NotImplementedError`` |
|
||||
+------+---------------------------------------------------------------------+
|
||||
|
||||
Note that some of these entries behave differently on Python 2 and Python 3,
|
||||
for example F812 is specific to Python 2 only.
|
||||
|
|
|
|||
|
|
@ -13,6 +13,6 @@ license_file = LICENSE
|
|||
requires-dist =
|
||||
enum34; python_version<"3.4"
|
||||
configparser; python_version<"3.2"
|
||||
pyflakes >= 1.5.0, < 1.7.0
|
||||
pyflakes >= 2.0.0, < 2.1.0
|
||||
pycodestyle >= 2.4.0, < 2.5.0
|
||||
mccabe >= 0.6.0, < 0.7.0
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -21,7 +21,7 @@ requires = [
|
|||
# http://flake8.pycqa.org/en/latest/faq.html#why-does-flake8-use-ranges-for-its-dependencies
|
||||
# And in which releases we will update those ranges here:
|
||||
# http://flake8.pycqa.org/en/latest/internal/releases.html#releasing-flake8
|
||||
"pyflakes >= 1.5.0, < 1.7.0",
|
||||
"pyflakes >= 2.0.0, < 2.1.0",
|
||||
"pycodestyle >= 2.4.0, < 2.5.0",
|
||||
"mccabe >= 0.6.0, < 0.7.0",
|
||||
"setuptools >= 30",
|
||||
|
|
|
|||
|
|
@ -38,6 +38,7 @@ FLAKE8_PYFLAKES_CODES = {
|
|||
'ReturnOutsideFunction': 'F706',
|
||||
'DefaultExceptNotLast': 'F707',
|
||||
'DoctestSyntaxError': 'F721',
|
||||
'ForwardAnnotationSyntaxError': 'F722',
|
||||
'RedefinedWhileUnused': 'F811',
|
||||
'RedefinedInListComp': 'F812',
|
||||
'UndefinedName': 'F821',
|
||||
|
|
@ -45,6 +46,7 @@ FLAKE8_PYFLAKES_CODES = {
|
|||
'UndefinedLocal': 'F823',
|
||||
'DuplicateArgument': 'F831',
|
||||
'UnusedVariable': 'F841',
|
||||
'RaiseNotImplemented': 'F901',
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue