File tree 3 files changed +1
-4
lines changed
3 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -81,8 +81,6 @@ generates its own :term:`error code`\ s for ``pyflakes``:
81
81
+------+---------------------------------------------------------------------+
82
82
| F702 | a ``continue `` statement outside of a ``while `` or ``for `` loop |
83
83
+------+---------------------------------------------------------------------+
84
- | F703 | a ``continue `` statement in a ``finally `` block in a loop |
85
- +------+---------------------------------------------------------------------+
86
84
| F704 | a ``yield `` or ``yield from `` statement outside of a function |
87
85
+------+---------------------------------------------------------------------+
88
86
| F706 | a ``return `` statement outside of a function/method |
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ package_dir =
36
36
install_requires =
37
37
mccabe>=0.7.0,<0.8.0
38
38
pycodestyle>=2.10.0,<2.11.0
39
- pyflakes>=3.0 .0,<3.1 .0
39
+ pyflakes>=3.1 .0,<3.2 .0
40
40
# 3.8.0's importlib.metadata is broken
41
41
python_requires = >=3.8.1
42
42
Original file line number Diff line number Diff line change 48
48
"IfTuple" : "F634" ,
49
49
"BreakOutsideLoop" : "F701" ,
50
50
"ContinueOutsideLoop" : "F702" ,
51
- "ContinueInFinally" : "F703" ,
52
51
"YieldOutsideFunction" : "F704" ,
53
52
"ReturnOutsideFunction" : "F706" ,
54
53
"DefaultExceptNotLast" : "F707" ,
You can’t perform that action at this time.
0 commit comments