third_party.pylibs.pylint.src/test/input/func_noerror_except_pass.py
2010-04-19 11:18:08 +02:00

12 lines
200 B
Python

"""
#3205: W0704 (except doesn't do anything) false positive if some statements
follow a "pass"
"""
__revision__ = None
try:
A = 2
except ValueError:
pass # pylint: disable=W0107
print A