I need a working approach of getting all classes that are inherited from the base class in Python.
Thanks.
|
I need a working approach of getting all classes that are inherited from the base class in Python. Thanks. |
||||
| show 1 more comment |
|
New-style classes have a
Here are the names of the subclasses:
Here are the subclasses themselves:
Confirmation that the subclasses do indeed list
Note if you want subsubclasses, you'll have to recurse:
|
|||||||||||||
|
|
This isn't a good answer given the much better built-in
|
||||
|
|
inspectmodule. – Glenn Maynard Oct 5 '10 at 9:20