En Fri, 04 May 2007 01:34:20 -0300, <[EMAIL PROTECTED]> escribió:

> I'm not against 'dir(MyClass)'; the question is, what should I 'dir()'
> to get methods of 'pyuno' type instance?

Usually instances don't have its own methods, they get them from the  
class. So you actually need dir(MyClass).
Note that dir() might not show all available methods.

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

Reply via email to