>On 3 Dec 2006 21:24:03 -0800, [EMAIL PROTECTED]
<[EMAIL PROTECTED]> wrote:
> In the following code, I could not find out why the set and get methods
> are not called once I set the property.
>
>
> >>> class Test:
> ... def __init__(self):
> ... self._color = 12
> ... def _setcolor(
In the following code, I could not find out why the set and get methods
are not called once I set the property.
>>> class Test:
... def __init__(self):
... self._color = 12
... def _setcolor(self,value):
... print 'setting'
... self._color = value
... def _getc