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 22 of file PropertyProxy.py.
23 """A string version of isinstance(). 24 <derived> is either an object instance, or a type 25 <base> is a string containing the name of the base class (or <derived> class)""" 26 if not isinstance(derived, type):
27 derived =
type(derived)
28 if derived.__name__ == base:
30 for b
in derived.__bases__:
def derives_from(derived, base)