Re: classobj() question

2008-02-12 Thread Roland Hedberg
Peter Otten wrote: > Roland Hedberg wrote: > >> I'm in the position that I have a bunch of classes defined before hand >> and then in some special circumstances I need to dynamically create a >> class that has a number of the static classes as parents. >> >> So I thought I could use classobj() fro

Re: classobj() question

2008-02-12 Thread Gabriel Genellina
En Tue, 12 Feb 2008 13:09:21 -0200, Roland Hedberg <[EMAIL PROTECTED]> escribi�: > I've made an extremely simple program to try to show what I mean and > what I expected. It's attached to this mail. The newsgroup doesn't allow for attachments. Ensure that the code is small and post it inline.

Re: classobj() question

2008-02-12 Thread Peter Otten
Roland Hedberg wrote: > I'm in the position that I have a bunch of classes defined before hand > and then in some special circumstances I need to dynamically create a > class that has a number of the static classes as parents. > > So I thought I could use classobj() from the new module, it seem e

classobj() question

2008-02-12 Thread Roland Hedberg
Hi! I'm in the position that I have a bunch of classes defined before hand and then in some special circumstances I need to dynamically create a class that has a number of the static classes as parents. So I thought I could use classobj() from the new module, it seem exactly what I wanted. But,