brad tilley wrote:

> How do I import a module and then ask it to show me its methods or other 
> aspects about itself during execution? I'd like to do something such as 
> this:
> 
> import win32api

dir(win32api)
help(win32api)

and also

import inspect
help(inspect)

</F>

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

Reply via email to