third_party.pylibs.pylint.src/test/input/func_i0014.py
Alexandre Fayolle ad31c0cc9d add support for --disable=all option (closes: #105327)
updated the documentation accordingly
deprecate 'disable-all' as an inline directive in favor of 'skip-file'
2012-10-03 07:23:48 +02:00

9 lines
139 B
Python

# pylint: disable-all
"""disable-all is usable as an inline option"""
# no warning should be issued
try:
import this
except:
pass