mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-16 09:09:52 +00:00
Allows 3 arity form of raise
This commit is contained in:
parent
d5d28da816
commit
00bce8b2bc
1 changed files with 5 additions and 1 deletions
|
|
@ -117,6 +117,7 @@ MAX_LINE_LENGTH = 79
|
||||||
|
|
||||||
INDENT_REGEX = re.compile(r'([ \t]*)')
|
INDENT_REGEX = re.compile(r'([ \t]*)')
|
||||||
RAISE_COMMA_REGEX = re.compile(r'raise\s+\w+\s*(,)')
|
RAISE_COMMA_REGEX = re.compile(r'raise\s+\w+\s*(,)')
|
||||||
|
QUOTED_REGEX = re.compile(r"""([""'])(?:(?=(\\?))\2.)*?\1""")
|
||||||
SELFTEST_REGEX = re.compile(r'(Okay|[EW]\d{3}):\s(.*)')
|
SELFTEST_REGEX = re.compile(r'(Okay|[EW]\d{3}):\s(.*)')
|
||||||
ERRORCODE_REGEX = re.compile(r'[EW]\d{3}')
|
ERRORCODE_REGEX = re.compile(r'[EW]\d{3}')
|
||||||
DOCSTRING_REGEX = re.compile(r'u?r?["\']')
|
DOCSTRING_REGEX = re.compile(r'u?r?["\']')
|
||||||
|
|
@ -690,7 +691,10 @@ def python_3000_raise_comma(logical_line):
|
||||||
"""
|
"""
|
||||||
match = RAISE_COMMA_REGEX.match(logical_line)
|
match = RAISE_COMMA_REGEX.match(logical_line)
|
||||||
if match:
|
if match:
|
||||||
return match.start(1), "W602 deprecated form of raising exception"
|
rest = QUOTED_REGEX.sub("", logical_line)
|
||||||
|
# but allow three argument form of raise
|
||||||
|
if rest.count(",") == 1:
|
||||||
|
return match.start(1), "W602 deprecated form of raising exception"
|
||||||
|
|
||||||
|
|
||||||
def python_3000_not_equal(logical_line):
|
def python_3000_not_equal(logical_line):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue