A string version of isinstance().
<derived> is either an object instance, or a type
<base>    is a string containing the name of the base class (or <derived> class)
 
Definition at line 24 of file PropertyProxy.py.
   25     """A string version of isinstance().    26     <derived> is either an object instance, or a type    27     <base>    is a string containing the name of the base class (or <derived> class)"""    28     if not isinstance(derived, type):
    29         derived = 
type(derived)
    30     if derived.__name__ == base:
    32     for b 
in derived.__bases__:
 
def derives_from(derived, base)