[IronPython] Problem with keyword parameters for built-in types

2005-11-03 Thread John Doty
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

[IronPython] Problem with keyword parameters for built-in types

2005-11-02 Thread John Doty
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