mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-09 06:14:17 +00:00
fixed the way exception definitions are bind
This commit is contained in:
parent
1307356ba7
commit
fde77e2168
2 changed files with 24 additions and 5 deletions
|
|
@ -9,9 +9,22 @@ except ValueError as err:
|
|||
print(err)
|
||||
"""
|
||||
|
||||
code2 = """
|
||||
try:
|
||||
pass
|
||||
except ValueError:
|
||||
print(err)
|
||||
|
||||
try:
|
||||
pass
|
||||
except ValueError:
|
||||
print(err)
|
||||
"""
|
||||
|
||||
|
||||
class TestFlake(TestCase):
|
||||
|
||||
def test_exception(self):
|
||||
warnings = check(code)
|
||||
self.assertEqual(warnings, 0)
|
||||
for c in (code, code2):
|
||||
warnings = check(code)
|
||||
self.assertEqual(warnings, 0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue