| Tor Norbye | 9258464 | 2014-04-17 08:39:25 -0700 | [diff] [blame^] | 1 | class A(Aa): |
| 2 | @property | ||||
| 3 | def <warning descr="Getter signature should be (self)">x<caret></warning>(self, r): | ||||
| 4 | return "" | ||||
| 5 | |||||
| 6 | @x.setter | ||||
| 7 | def <warning descr="Setter should not return a value">x</warning>(self, r): | ||||
| 8 | return r | ||||