summaryrefslogtreecommitdiff
path: root/test/input/ignore_except_pass_by_default.py
blob: 444e540d2d01de1ea327a809bc00ce80bf0630e8 (plain)
1
2
3
4
5
6
"""#5575: by default no W0704 warning on bare pass in except"""

try:
    __exception__ = 0
except ValueError:
    pass