Re: Writing a function from within Python

2008-05-28 Thread George Sakkis
On May 28, 4:39 pm, Aaron Scott <[EMAIL PROTECTED]> wrote: > Is it possible to change the content of a function after the function > has been created? For instance, say I make a class: > > class MyClass: > def ClassFunction(self): > return 1 > > And I

Re: Writing a function from within Python

2008-05-28 Thread Arnaud Delobelle
Aaron Scott <[EMAIL PROTECTED]> writes: > Is it possible to change the content of a function after the function > has been created? For instance, say I make a class: > > class MyClass: > def ClassFunction(self): > return 1 > > And I create an object: > >