third_party.pylibs.pylint.src/pylint/test/data/clientmodule_test.py

30 lines
786 B
Python
Raw Normal View History

2006-04-26 10:48:09 +00:00
""" docstring for file clientmodule.py """
from data.suppliermodule_test import Interface, DoNothing
2006-04-26 10:48:09 +00:00
class Ancestor(object):
2006-04-26 10:48:09 +00:00
""" Ancestor method """
__implements__ = (Interface,)
cls_member = DoNothing()
2006-04-26 10:48:09 +00:00
def __init__(self, value):
local_variable = 0
self.attr = 'this method shouldn\'t have a docstring'
self.__value = value
def get_value(self):
""" nice docstring ;-) """
return self.__value
def set_value(self, value):
self.__value = value
return 'this method shouldn\'t have a docstring'
2006-04-26 10:48:09 +00:00
class Specialization(Ancestor):
TYPE = 'final class'
top = 'class'
2006-04-26 10:48:09 +00:00
def __init__(self, value, _id):
Ancestor.__init__(self, value)
self._id = _id
self.relation = DoNothing()