import inspect

x = ABC() # create an instance of class ABC
print inspect.getmembers(x,inspect.ismethod)
--------------------

Most of any introspection stuff can be done using the module "inspect".

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

Reply via email to