Traversing the properties of a Class

EdG edquichan at yahoo.com
Thu Jan 18 12:27:33 EST 2007


I'm using Python version 2.4 and I created a class with some properties
like:

def GetCallAmount(self):
        return somedata

def GetCallCurrency(self):
    return  somemoredata

more....defs..etc.

CallAmount           = property(GetCallAmount,None,None,None)
CallCurrency         = property(GetCallCurrency, None, None, None)

more....properies..etc.

For debugging purposes, I would like to traverse the class listing out
all the properties.




More information about the Python-list mailing list