Re: module level subclassing

2007-12-11 Thread Gabriel Genellina
En Mon, 10 Dec 2007 16:43:15 -0300, km <[EMAIL PROTECTED]> escribió: > Is there a way to access the classes defined in the __init__.py into the > modules files in the directory? > for example say i have a module (dir) M with contents __init__.py and > a.pyand > b.py > a.py and b.py would lik

module level subclassing

2007-12-10 Thread km
Hi all, Is there a way to access the classes defined in the __init__.py into the modules files in the directory? for example say i have a module (dir) M with contents __init__.py and a.pyand b.py a.py and b.py would like to subclass/instantiate a class defined in __init__.py how's that possibl