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

7 lines
101 B
Python

# pylint: disable=missing-docstring, import-error
try:
1 + "2"
except: # [bare-except]
pass