<[EMAIL PROTECTED]> wrote:

> Howdy, a (possibly) quick question for anyone willing to listen.
> I have a question regarding lists and Classes; I have a class called

It looks you don't really want what you're saying: you appear to want a
list of INSTANCES of one class, *NOT* a list of CLASSES.  E.g.:

class Gazelle(object): pass

class Zip(Gazelle): pass

class Zop(Gazelle): pass

class Zap(Gazelle): pass

thelist = [Zip, Zop, Zap]


Now THIS would be a list of classes, but contextual clues in your text
appear to suggest that you do NOT want this, and may be deeply mistaken
about what "a list of classes" means.  I'd rather get confirmation of
that point before I address your question; if you use totally,
irretrievably wrong terminology, miscommunication's likely:-(.


Alex
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to