On 2007-01-18, EdG <[EMAIL PROTECTED]> wrote: > For debugging purposes, I would like to traverse the class > listing out all the properties.
This is the first thing that came to mind.
def show_properties(cls):
for attr in dir(cls):
if isinstance(getattr(cls, attr), property):
print attr
--
Neil Cerutti
--
Posted via a free Usenet account from http://www.teranews.com
--
http://mail.python.org/mailman/listinfo/python-list
