Vijairaj  R <[EMAIL PROTECTED]> wrote:
   ...
> class Test:

do not use old-style classes: they exist ONLY for backwards
compatibility.

Make you class Test new-style:

class Test(object):
   ...


and you can call Test.__subclasses__() to get a list of all extant
subclassed of Test at any time.


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

Reply via email to