[Pythonmac-SIG] [py2app help] Argv emulation and lost of focus

2005-01-12 Thread whamoo
Hi to all, I've bundled an application with argv emulation (-a) , but when i start the app this doesn't focus, and the "applicationDidFinishLaunching_" only start when i clik on the icon on the dock.. all works fine but i want the focus on my app when i open it =) Someone can tell me someth

[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

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

2005-01-12 Thread Schollnick, Benjamin
Rayme, This sounds like a Linked List system... I was not able to find quickly a linked list module, but searching by "trees" at the Vaults produced a R/B tree... http://newcenturycomputers.net/projects/rbtree.html I've been out of touch, I have not heard

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

2005-01-12 Thread Rayme Jernigan
Hi Benjamin, I've done this sort of thing with linked lists in Python... by putting all the nodes in a (Python) list, each with a unique ID, and using that ID to link the nodes to each other, etc. But the important thing for me to learn about here... "the goal"... is the self-instantiation aspe

Re: [Pythonmac-SIG] [EMAIL PROTECTED]: MindVision Releases VISE X 1.5 for Mac OS X]

2005-01-12 Thread Jack Jansen
On 11-jan-05, at 2:01, Bob Ippolito wrote: On Jan 10, 2005, at 19:33, Neal Norwitz wrote: I thought this might be of interest here. The PSF owns a license to VISE. Jack knows the details. I think that this is only really relevant to Mac OS9. I'm not sure if Jack plans to make another release fo

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 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