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.

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

Reply via email to