I'm sorry if this is a known limitation, but the following doesn't work with IronPython 0.9.3:
class MyClass:
def __init__(self, testValue):
self.testValue = testValue
def _getValue(self):
return self.testValue
value = property(_getValue, doc="This is docu
I'm sorry if this is a known limitation, but the following doesn't work with IronPython 0.9.3: class MyClass: def __init__(self, testValue): self.testValue = testValue def _getValue(self):
return self.testValue value = property(_getValue, doc="This is documentatio