RE: Get Available Functions

2008-01-28 Thread Robert Rawlins - Think Blue
To: Robert Rawlins - Think Blue Cc: python-list@python.org Subject: Re: Get Available Functions > I'm working with a python module which isn't part of the core > Python API and it also isn't very documented or supported, is > there any way that I can easily dump/view t

Re: Get Available Functions

2008-01-28 Thread Christian Heimes
Tim Chase wrote: > I've had a couple cases where the underlying module was written > in C (mod_python in particular...don't know if it still has this > problem) where dir() wouldn't actually tell you about the object, > but for most cases, dir() will get you pointed in the right > dir-ection. :

Re: Get Available Functions

2008-01-28 Thread Tim Chase
> I'm working with a python module which isn't part of the core > Python API and it also isn't very documented or supported, is > there any way that I can easily dump/view the available > classes and methods within the package from within python? Most of the time, the dir(), type() and help() func

Get Available Functions

2008-01-28 Thread Robert Rawlins - Think Blue
Hello Guys, I'm working with a python module which isn't part of the core Python API and it also isn't very documented or supported, is there any way that I can easily dump/view the available classes and methods within the package from within python? Thanks guys, Rob -- http://mail.py