Re: making run time changes..

2007-09-27 Thread Gabriel Genellina
En Thu, 27 Sep 2007 13:52:39 -0300, Piyush Jain <[EMAIL PROTECTED]> escribi�: >> I am new(almost) to python. I wish to making a server in which I can >> make changes at run time. For example , add a method to a >> class/attribute to object etc. by sending it messages. To add a new attribute wit

RE: making run time changes..

2007-09-27 Thread Piyush Jain
from outside. Regards, Piyush -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Steve Holden Sent: Thursday, September 27, 2007 9:05 PM To: python-list@python.org Subject: Re: making run time changes.. Piyush Jain wrote: > Hi, > > I am new(almost) to

Re: making run time changes..

2007-09-27 Thread Steve Holden
Piyush Jain wrote: > Hi, > > I am new(almost) to python. I wish to making a server in which I can > make changes at run time. For example , add a method to a > class/attribute to object etc. by sending it messages. > > Can anyone help me with what features to look into and how to go about > it

making run time changes..

2007-09-27 Thread Piyush Jain
Hi, I am new(almost) to python. I wish to making a server in which I can make changes at run time. For example , add a method to a class/attribute to object etc. by sending it messages. Can anyone help me with what features to look into and how to go about it. Are there any similar projects?