Re: self-aware list of objects able to sense constituent member alterations?

2009-02-08 Thread John O'Hagan
On Fri, 6 Feb 2009, greyw...@gmail.com wrote: On Jan 28, 4:37 am, John O'Hagan m...@johnohagan.com wrote: On Tue, 27 Jan 2009, Reckoner wrote: I'm not sure this is possible, but I would like to have a list of  objects A=[a,b,c,d,...,z] where,  in the midst of a lot of

Re: self-aware list of objects able to sense constituent member alterations?

2009-02-06 Thread greyw...@gmail.com
On Jan 28, 4:37 am, John O'Hagan m...@johnohagan.com wrote: On Tue, 27 Jan 2009, Reckoner wrote: I'm not sure this is possible, but I would like to have a list of  objects A=[a,b,c,d,...,z] where,  in the midst of a lot of processing I might do something like,

Re: self-aware list of objects able to sense constituent member alterations?

2009-01-30 Thread Reckoner
On Jan 28, 9:49 am, koranthala koranth...@gmail.com wrote: On Jan 28, 10:39 pm,Reckonerrecko...@gmail.com wrote: On Jan 28, 9:16 am, koranthala koranth...@gmail.com wrote: On Jan 28, 5:42 pm, koranthala koranth...@gmail.com wrote: On Jan 28, 2:16 am,Reckonerrecko...@gmail.com wrote:

Re: self-aware list of objects able to sense constituent member alterations?

2009-01-30 Thread Robert Kern
On 2009-01-29 18:22, Reckoner wrote: I haven't looked at Enthought in awhile. I want to avoid having to installing the entire Enthought toolsuite, however. Would I have to do that for Traits? No, Traits can be installed by itself unless if you want its GUI capabilities.

Re: self-aware list of objects able to sense constituent member alterations?

2009-01-29 Thread Reckoner
On Jan 28, 10:17 pm, Peter Wang misterw...@gmail.com wrote: On Jan 27, 3:16 pm,Reckonerrecko...@gmail.com wrote: I'm not sure this is possible, but I would like to have a list of  objects A=[a,b,c,d,...,z] where,  in the midst of a lot of processing I might do something like,

Re: self-aware list of objects able to sense constituent member alterations?

2009-01-28 Thread Aaron Brady
On Jan 27, 3:16 pm, Reckoner recko...@gmail.com wrote: I'm not sure this is possible, but I would like to have a list of  objects A=[a,b,c,d,...,z] where,  in the midst of a lot of processing I might do something like, A[0].do_something_which_changes_the_properties() which alter the

Re: self-aware list of objects able to sense constituent member alterations?

2009-01-28 Thread John O'Hagan
On Tue, 27 Jan 2009, Reckoner wrote: I'm not sure this is possible, but I would like to have a list of objects A=[a,b,c,d,...,z] where, in the midst of a lot of processing I might do something like, A[0].do_something_which_changes_the_properties() which alter the properties of the

Re: self-aware list of objects able to sense constituent member alterations?

2009-01-28 Thread koranthala
On Jan 28, 2:16 am, Reckoner recko...@gmail.com wrote: I'm not sure this is possible, but I would like to have a list of  objects A=[a,b,c,d,...,z] where,  in the midst of a lot of processing I might do something like, A[0].do_something_which_changes_the_properties() which alter the

Re: self-aware list of objects able to sense constituent member alterations?

2009-01-28 Thread koranthala
On Jan 28, 5:42 pm, koranthala koranth...@gmail.com wrote: On Jan 28, 2:16 am, Reckoner recko...@gmail.com wrote: I'm not sure this is possible, but I would like to have a list of  objects A=[a,b,c,d,...,z] where,  in the midst of a lot of processing I might do something like,

Re: self-aware list of objects able to sense constituent member alterations?

2009-01-28 Thread Paul McGuire
On Jan 27, 3:16 pm, Reckoner recko...@gmail.com wrote: The trick is that I would like A to be mysteriously aware that something about the  object 'a' has changed so that when I revisit A, I will know that the other items in the list need to be refreshed to reflect the changes in A as a result

Re: self-aware list of objects able to sense constituent member alterations?

2009-01-28 Thread Reckoner
On Jan 28, 9:16 am, koranthala koranth...@gmail.com wrote: On Jan 28, 5:42 pm, koranthala koranth...@gmail.com wrote: On Jan 28, 2:16 am, Reckoner recko...@gmail.com wrote: I'm not sure this is possible, but I would like to have a list of objects A=[a,b,c,d,...,z] where, in

Re: self-aware list of objects able to sense constituent member alterations?

2009-01-28 Thread koranthala
On Jan 28, 10:39 pm, Reckoner recko...@gmail.com wrote: On Jan 28, 9:16 am, koranthala koranth...@gmail.com wrote: On Jan 28, 5:42 pm, koranthala koranth...@gmail.com wrote: On Jan 28, 2:16 am, Reckoner recko...@gmail.com wrote: I'm not sure this is possible, but I would like to

Re: self-aware list of objects able to sense constituent member alterations?

2009-01-28 Thread Reckoner
On Jan 27, 9:46 pm, Steven D'Aprano ste...@remove.this.cybersource.com.au wrote: On Tue, 27 Jan 2009 13:16:36 -0800, Reckoner wrote: I'm not sure this is possible, but I would like to have a list of objects A=[a,b,c,d,...,z] where, in the midst of a lot of processing I might do

Re: self-aware list of objects able to sense constituent member alterations?

2009-01-28 Thread Steven D'Aprano
On Wed, 28 Jan 2009 11:06:21 -0800, Reckoner wrote: thanks for your reply. For the second case where class TaintThing(object): parent = A def __init__(self, obj): self.__dict__['_proxy'] = obj def __getattr__(self, attr): return getattr(self._proxy, attr)

Re: self-aware list of objects able to sense constituent member alterations?

2009-01-28 Thread Peter Wang
On Jan 27, 3:16 pm, Reckoner recko...@gmail.com wrote: I'm not sure this is possible, but I would like to have a list of  objects A=[a,b,c,d,...,z] where,  in the midst of a lot of processing I might do something like, A[0].do_something_which_changes_the_properties() which alter the

Re: self-aware list of objects able to sense constituent member alterations?

2009-01-27 Thread Chris Rebert
On Tue, Jan 27, 2009 at 1:16 PM, Reckoner recko...@gmail.com wrote: I'm not sure this is possible, but I would like to have a list of objects A=[a,b,c,d,...,z] where, in the midst of a lot of processing I might do something like, A[0].do_something_which_changes_the_properties() which

Re: self-aware list of objects able to sense constituent member alterations?

2009-01-27 Thread Steven D'Aprano
On Tue, 27 Jan 2009 13:16:36 -0800, Reckoner wrote: I'm not sure this is possible, but I would like to have a list of objects A=[a,b,c,d,...,z] where, in the midst of a lot of processing I might do something like, A[0].do_something_which_changes_the_properties() which alter the