alf wrote:
> is there any way to tell the class the base class during runtime?
>
> a.

Example:

>>> class A(object):pass
>>> class B(A):pass
>>> B.mro()
[<class '__main__.B'>, <class '__main__.A'>, <type 'object'>]

See also Micheles nice article about the semantics of the "mro" (
method resolution order).

http://www.python.org/download/releases/2.3/mro/

Regards,
Kay

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to