Python __subclasses__() not listing subclasses
- by Mridang Agarwalla
I cant seem to list all derived classes using the __subclasses__() method. Here's my directory layout:
import.py
backends
__init__.py
--digger
__init__.py
base.py
test.py
--plugins
plugina_plugin.py
From import.py i'm calling test.py. test.py in turn iterates over all the files in the…