Re: list property fires get on append

2008-01-08 Thread Soviut
On Jan 6, 11:36 am, Carl Banks <[EMAIL PROTECTED]> wrote: > On Sun, 06 Jan 2008 00:31:13 -0800, Soviut wrote: > > I figured that an append would be treated as a set since I'm adding to > > the list. But what you say makes sense, although I can't say I'm happy > > with the behaviour. Is there any

Re: list property fires get on append

2008-01-07 Thread Soviut
On Jan 6, 11:36 am, Carl Banks <[EMAIL PROTECTED]> wrote: > On Sun, 06 Jan 2008 00:31:13 -0800, Soviut wrote: > > I figured that an append would be treated as a set since I'm adding to > > the list. But what you say makes sense, although I can't say I'm happy > > with the behaviour. Is there any

Re: list property fires get on append

2008-01-06 Thread Carl Banks
On Sun, 06 Jan 2008 00:31:13 -0800, Soviut wrote: > I figured that an append would be treated as a set since I'm adding to > the list. But what you say makes sense, although I can't say I'm happy > with the behaviour. Is there any way I can get the append to fire a > set? I'm thinking of propert

Re: list property fires get on append

2008-01-06 Thread Diez B. Roggisch
Soviut schrieb: > On Jan 6, 3:03 am, Fredrik Lundh <[EMAIL PROTECTED]> wrote: >> [EMAIL PROTECTED] wrote: >>> I've created a class that has a property which points at a private >>> list. When I try to use the append() function on this list property, >>> the fget method is fired rather than the fse

Re: list property fires get on append

2008-01-06 Thread Soviut
On Jan 6, 3:03 am, Fredrik Lundh <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] wrote: > > I've created a class that has a property which points at a private > > list. When I try to use the append() function on this list property, > > the fget method is fired rather than the fset method. If I dir

Re: list property fires get on append

2008-01-06 Thread Fredrik Lundh
[EMAIL PROTECTED] wrote: > I've created a class that has a property which points at a private > list. When I try to use the append() function on this list property, > the fget method is fired rather than the fset method. If I directly > set my property to a literal list, the set method fires. >

list property fires get on append

2008-01-05 Thread ian
I've created a class that has a property which points at a private list. When I try to use the append() function on this list property, the fget method is fired rather than the fset method. If I directly set my property to a literal list, the set method fires. Here's a stripped down version of m