MCPcopy Create free account
hub / github.com/LabPy/lantz / Y

Class Y

lantz/testsuite/test_driver.py:194–212  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 2

test_derived_classMethod · 0.85

Calls

no outgoing calls

Tested by 2

test_derived_classMethod · 0.68