/pyjs/tests/test003.py
Python | 8 lines | 5 code | 3 blank | 0 comment | 0 complexity | b1fa048eba3843765e713043fb368b64 MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0
1class UIObject: 2 pass 3 4 5class Widget(UIObject): 6 7 def setParent(self, parent): 8 self.parent = parent