third_party.pylibs.pylint.src/test/input/ignore_except_pass_by_default.py
Sylvain Thénault 260c919a30 #5575
2009-01-28 11:04:01 +01:00

7 lines
120 B
Python

"""#5575: by default no W0704 warning on bare pass in except"""
try:
__exception__ = 0
except ValueError:
pass