summaryrefslogtreecommitdiff
path: root/pylint/test/input/func_w0703.py
blob: fb633fdf4c9b6095049e9edd5c00c8c2c96eddf1 (plain)
1
2
3
4
5
6
7
8
9
"""check empty except statement
"""
from __future__ import print_function
__revision__ = 0

try:
    __revision__ += 1
except Exception:
    print('error')