Re: Adding classes to modules at runtime from outside that module

2008-04-11 Thread frambooz
On Apr 10, 8:05 pm, Andrew Warkentin <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] wrote: > >  In Python, is it possible to add classes to a module at run-time? > > >  Say I have a module foo and a module bar. Foo has class A and B, and > >bar has class C. I want to add class C to foo so I can acc

Re: Adding classes to modules at runtime from outside that module

2008-04-10 Thread Andrew Warkentin
[EMAIL PROTECTED] wrote: > In Python, is it possible to add classes to a module at run-time? > > Say I have a module foo and a module bar. Foo has class A and B, and >bar has class C. I want to add class C to foo so I can access it as >foo.C, but i want to do it without modifying foo's source. >

Re: Adding classes to modules at runtime from outside that module

2008-04-10 Thread Jeffrey Froman
[EMAIL PROTECTED] wrote: > In Python, is it possible to add classes to a module at run-time? > > Say I have a module foo and a module bar. Foo has class A and B, and > bar has class C. I want to add class C to foo so I can access it as > foo.C, but i want to do it without modifying foo's source.