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 / astroid / tests / testdata / python3 / data / suppliermodule_test.py @ 745

History | View | Annotate | Download (236 Bytes)

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

    
3
class NotImplemented(Exception):
4
    pass
5

    
6
class Interface:
7
    def get_value(self):
8
        raise NotImplemented()
9

    
10
    def set_value(self, value):
11
        raise NotImplemented()
12

    
13
class DoNothing : pass