Statistics
| Revision:

gvsig-scripting / org.gvsig.scripting / trunk / org.gvsig.scripting / org.gvsig.scripting.app / org.gvsig.scripting.app.mainplugin / src / main / resources-plugin / scripting / lib / pylint / test / data / suppliermodule_test.py @ 745

History | View | Annotate | Download (198 Bytes)

1
""" file suppliermodule.py """
2

    
3
class Interface:
4
    def get_value(self):
5
        raise NotImplementedError
6

    
7
    def set_value(self, value):
8
        raise NotImplementedError
9

    
10
class DoNothing: pass