Re: [Pythonmac-SIG] self-instantiating instances in pyhton

2005-01-13 Thread Rayme Jernigan
You guess right... this is the type of approach I was looking for. Thanks!! On Jan 12, 2005, at 7:14 PM, Bob Ippolito wrote: On Jan 12, 2005, at 12:52, Rayme Jernigan wrote: Hi, I'm looking for a language to abuse for a project I'm working on. I know a little Python, but I do not know if it can

Re: [Pythonmac-SIG] self-instantiating instances in pyhton

2005-01-13 Thread Rayme Jernigan
Hi Piet, Thanks to you, and everyone for your thoughts on this. By "external controller code" I mean code that would instantiate, keep track of and manipulate these objects. So the second part of the problem is transfer of control to the new node object. Put another way, in the purest implementa

Re: [Pythonmac-SIG] self-instantiating instances in pyhton

2005-01-13 Thread Piet van Oostrum
> Rayme Jernigan <[EMAIL PROTECTED]> (RJ) wrote: RJ> Hi, RJ> I'm looking for a language to abuse for a project I'm working on. I know a RJ> little Python, but I do not know if it can do this: I'd like to define some RJ> class "N" that instantiates objects that can instantiate fresh new objects

Re: [Pythonmac-SIG] self-instantiating instances in pyhton

2005-01-12 Thread Bob Ippolito
On Jan 12, 2005, at 12:52, Rayme Jernigan wrote: Hi, I'm looking for a language to abuse for a project I'm working on. I know a little Python, but I do not know if it can do this: I'd like to define some class "N" that instantiates objects that can instantiate fresh new objects of that same clas

Re: [Pythonmac-SIG] self-instantiating instances in pyhton

2005-01-12 Thread has
Rayme Jernigan wrote: I'm looking for a language to abuse for a project I'm working on. I know a little Python, but I do not know if it can do this: I'd like to define some class "N" that instantiates objects that can instantiate fresh new objects of that same class... without external controller c

Re: [Pythonmac-SIG] self-instantiating instances in pyhton

2005-01-12 Thread Rayme Jernigan
MAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rayme Jernigan Sent: Wednesday, January 12, 2005 12:53 PM To: pythonmac-sig@python.org Subject: [Pythonmac-SIG] self-instantiating instances in pyhton Hi, I'm looking for a language to abuse for a project I'm working on. I know a littl

RE: [Pythonmac-SIG] self-instantiating instances in pyhton

2005-01-12 Thread Schollnick, Benjamin
ard python list - Benjamin > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Rayme Jernigan > Sent: Wednesday, January 12, 2005 12:53 PM > To: pythonmac-sig@python.org > Subject: [Pythonmac-SIG] self-instantiati

[Pythonmac-SIG] self-instantiating instances in pyhton

2005-01-12 Thread Rayme Jernigan
Hi, I'm looking for a language to abuse for a project I'm working on. I know a little Python, but I do not know if it can do this: I'd like to define some class "N" that instantiates objects that can instantiate fresh new objects of that same class... without external controller code. You coul