John Machin <[EMAIL PROTECTED]> wrote:
> On Sep 4, 5:47 am, <[EMAIL PROTECTED]> wrote:
>> Arnaud Delobelle <[EMAIL PROTECTED]> wrote:
>> > On Sep 3, 7:00 pm, <[EMAIL PROTECTED]> wrote:
>>
>> >> I want to do something like this. My class/instance has a dict as a
>> >> property. I want the instance
Arnaud Delobelle <[EMAIL PROTECTED]> wrote:
> On Sep 3, 8:47 pm, <[EMAIL PROTECTED]> wrote:
> [...]
>> My intention was to have a propery 'sum' in my object, and which has sum
>> of all the values() of the dict (i have code to make sure that the value
>> of dict are all numeric). I could just th
On Sep 4, 5:47 am, <[EMAIL PROTECTED]> wrote:
> Arnaud Delobelle <[EMAIL PROTECTED]> wrote:
> > On Sep 3, 7:00 pm, <[EMAIL PROTECTED]> wrote:
>
> >> I want to do something like this. My class/instance has a dict as a
> >> property. I want the instance to catch the change in the dict (change
> >>
On Sep 3, 8:47 pm, <[EMAIL PROTECTED]> wrote:
[...]
> My intention was to have a propery 'sum' in my object, and which has sum
> of all the values() of the dict (i have code to make sure that the value
> of dict are all numeric). I could just the propery being calculated
> everytime the property
Arnaud Delobelle <[EMAIL PROTECTED]> wrote:
> On Sep 3, 7:00 pm, <[EMAIL PROTECTED]> wrote:
>>
>> I want to do something like this. My class/instance has a dict as a
>> property. I want the instance to catch the change in the dict (change
>> in some values, addition/deletion of key/value etc) to
On Sep 3, 7:00 pm, <[EMAIL PROTECTED]> wrote:
> Hello all,
>
> I have a question which might be simple or need some work around.
>
> I want to do something like this. My class/instance has a dict as a
> property. I want the instance to catch the change in the dict (change
> in some values, additi
Hello all,
I have a question which might be simple or need some work around.
I want to do something like this. My class/instance has a dict as a
property. I want the instance to catch the change in the dict (change
in some values, addition/deletion of key/value etc) to be recognized by
the clas