ARGH
[matches/honours.git] / research / transmission_spectroscopy / simulator / pgu-0.18 / build / lib / pgu / gui / test.py
1
2 class Test(object):
3
4     @property
5     def something(self):
6         return 12
7
8     @something.setter
9     def something(self, value):
10         self.other = value
11
12 t = Test()
13
14 print t.something
15
16 t.something = 123
17 print t.other
18

UCC git Repository :: git.ucc.asn.au