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

20 lines
355 B
Python

# pylint: disable-msg=R0903
"""test property on old style class"""
__revision__ = 1
def getter(self):
"""interesting"""
return self
class OkOk(object):
"""correct usage"""
method = property(getter, doc='hop')
class HaNonNonNon:
"""bad usage"""
method = property(getter, doc='hop')
def __init__(self):
pass