[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.python

Re: Get Available Functions

Christian Heimes

1/28/2008 5:09:00 PM

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. :)

dir(), inspect and help() can't retrieve the method signature from a C
function (builtin_function_or_method type).

Christian