class memebers

2007-12-19 Thread N L
How do I list the members of a class? Meaning, how do I know what are the functions a particular class has, if i do not want to manually browse through the class? N Never miss a thing. Make Yahoo

Re: class memebers

2007-12-19 Thread Gabriel Genellina
En Wed, 19 Dec 2007 17:17:43 -0300, N L [EMAIL PROTECTED] escribió: How do I list the members of a class? Meaning, how do I know what are the functions a particular class has, if i do not want to manually browse through the class? From the interpreter, just print dir(class) or