| 192 | return 'action1' |
| 193 | |
| 194 | class Y(X): |
| 195 | |
| 196 | _val2 = 1 |
| 197 | |
| 198 | @Feat() |
| 199 | def feat2(self): |
| 200 | return 'feat2' |
| 201 | |
| 202 | @Feat() |
| 203 | def val2(self): |
| 204 | return self._val2 |
| 205 | |
| 206 | @val2.setter |
| 207 | def val2(self, value): |
| 208 | self._val2 = value |
| 209 | |
| 210 | @Action() |
| 211 | def action2(self): |
| 212 | return 'action2' |
| 213 | |
| 214 | class Z(X): |
| 215 |
no outgoing calls