mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-11 23:34:17 +00:00
Fixed the exception scope behavior
This commit is contained in:
parent
d8f6e431f1
commit
ef4b069970
5 changed files with 18 additions and 14 deletions
|
|
@ -4,10 +4,10 @@
|
||||||
MIT License.
|
MIT License.
|
||||||
"""
|
"""
|
||||||
try:
|
try:
|
||||||
from compiler import parse
|
from compiler import parse # NOQA
|
||||||
iter_child_nodes = None
|
iter_child_nodes = None # NOQA
|
||||||
except ImportError:
|
except ImportError:
|
||||||
from ast import parse, iter_child_nodes
|
from ast import parse, iter_child_nodes # NOQA
|
||||||
|
|
||||||
import optparse
|
import optparse
|
||||||
import sys
|
import sys
|
||||||
|
|
|
||||||
|
|
@ -18,11 +18,6 @@ class Message(object):
|
||||||
return self.filename < other.filename
|
return self.filename < other.filename
|
||||||
return self.lineno < other.lineno
|
return self.lineno < other.lineno
|
||||||
|
|
||||||
def __cmp__(self, other):
|
|
||||||
if self.filename != other.filename:
|
|
||||||
return cmp(self.filename, other.filename)
|
|
||||||
return cmp(self.lineno, other.lineno)
|
|
||||||
|
|
||||||
|
|
||||||
class UnusedImport(Message):
|
class UnusedImport(Message):
|
||||||
message = '%r imported but unused'
|
message = '%r imported but unused'
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
try:
|
try:
|
||||||
import __builtin__ # NOQA
|
import __builtin__ # NOQA
|
||||||
except ImportError:
|
except ImportError:
|
||||||
import builtins as __builtin__
|
import builtins as __builtin__ # NOQA
|
||||||
|
|
||||||
import os.path
|
import os.path
|
||||||
import _ast
|
import _ast
|
||||||
|
|
@ -332,8 +332,15 @@ class Checker(object):
|
||||||
COMPREHENSION = KEYWORD = handleChildren
|
COMPREHENSION = KEYWORD = handleChildren
|
||||||
|
|
||||||
def EXCEPTHANDLER(self, node):
|
def EXCEPTHANDLER(self, node):
|
||||||
|
|
||||||
if node.name is not None:
|
if node.name is not None:
|
||||||
self.addBinding(node.lineno, FunctionDefinition(node.name, node))
|
self.addBinding(node.lineno, Assignment(node.name, node))
|
||||||
|
|
||||||
|
def runException():
|
||||||
|
for stmt in node.body:
|
||||||
|
self.handleNode(stmt, node)
|
||||||
|
|
||||||
|
self.deferFunction(runException)
|
||||||
|
|
||||||
def addBinding(self, lineno, value, reportRedef=True):
|
def addBinding(self, lineno, value, reportRedef=True):
|
||||||
'''Called when a binding is altered.
|
'''Called when a binding is altered.
|
||||||
|
|
@ -358,7 +365,6 @@ class Checker(object):
|
||||||
and (not isinstance(value, Importation) \
|
and (not isinstance(value, Importation) \
|
||||||
or value.fullName == existing.fullName)
|
or value.fullName == existing.fullName)
|
||||||
and reportRedef):
|
and reportRedef):
|
||||||
|
|
||||||
self.report(messages.RedefinedWhileUnused,
|
self.report(messages.RedefinedWhileUnused,
|
||||||
lineno, value.name,
|
lineno, value.name,
|
||||||
scope[value.name].source.lineno)
|
scope[value.name].source.lineno)
|
||||||
|
|
@ -685,7 +691,6 @@ def check(codeString, filename='(code)'):
|
||||||
if offset is not None:
|
if offset is not None:
|
||||||
offset = offset - (len(text) - len(line))
|
offset = offset - (len(text) - len(line))
|
||||||
|
|
||||||
|
|
||||||
sys.stderr.write('%s:%d: %s\n' % (filename, lineno, msg))
|
sys.stderr.write('%s:%d: %s\n' % (filename, lineno, msg))
|
||||||
sys.stderr.write(line + '\n')
|
sys.stderr.write(line + '\n')
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ import sys
|
||||||
try:
|
try:
|
||||||
from StringIO import StringIO
|
from StringIO import StringIO
|
||||||
except ImportError:
|
except ImportError:
|
||||||
from io import StringIO
|
from io import StringIO # NOQA
|
||||||
|
|
||||||
from flake8.mccabe import get_code_complexity
|
from flake8.mccabe import get_code_complexity
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,11 @@ def skip_warning(warning):
|
||||||
# XXX quick dirty hack, just need to keep the line in the warning
|
# XXX quick dirty hack, just need to keep the line in the warning
|
||||||
if not os.path.isfile(warning.filename):
|
if not os.path.isfile(warning.filename):
|
||||||
return False
|
return False
|
||||||
line = open(warning.filename).readlines()[warning.lineno - 1]
|
|
||||||
|
# XXX should cache the file in memory
|
||||||
|
with open(warning.filename) as f:
|
||||||
|
line = f.readlines()[warning.lineno - 1]
|
||||||
|
|
||||||
return skip_line(line)
|
return skip_line(line)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue