third_party.pylibs.pylint.src/test/input/func_noerror_w0232.py
2010-04-19 11:18:08 +02:00

11 lines
246 B
Python

# pylint: disable=R0903,R0923
"""check interface and exception without __init__ doesn't print warnings
"""
__revision__ = ''
class Interface:
"""interface without docstring"""
class MyError(Exception):
"""exception without docstring"""