third_party.pylibs.pylint.src/tests/data/suppliermodule_test.py

11 lines
198 B
Python
Raw Normal View History

2006-04-26 10:48:09 +00:00
""" file suppliermodule.py """
class Interface:
def get_value(self):
raise NotImplementedError
2006-04-26 10:48:09 +00:00
def set_value(self, value):
raise NotImplementedError
2006-04-26 10:48:09 +00:00
class DoNothing: pass