third_party.pylibs.pylint.src/test/input/func_newstyle___slots__.py
root 4becf6f9e5 forget the past.
forget the past.
2006-04-26 10:48:09 +00:00

18 lines
293 B
Python

# pylint: disable-msg=R0903
"""test __slots__ on old style class"""
__revision__ = 1
class OkOk(object):
"""correct usage"""
__slots__ = ('a', 'b')
class HaNonNonNon:
"""bad usage"""
__slots__ = ('a', 'b')
def __init__(self):
pass
__slots__ = 'hop' # pfff