python-by-example-150-chall.../venv/lib/python3.6/site-packages/pylint/test/functional/broad_except.py
2019-08-04 15:26:35 +03:00

15 lines
260 B
Python

# pylint: disable=missing-docstring
from __future__ import print_function
__revision__ = 0
try:
__revision__ += 1
except Exception: # [broad-except]
print('error')
try:
__revision__ += 1
except BaseException: # [broad-except]
print('error')