On Dec 14, 2007 12:08 PM, Kent Johnson <[EMAIL PROTECTED]> wrote:
> Luis N wrote:
> > Is there a way to introspect a function or class' required arguments,
> > particularly keyword arguments?
>
> See inspect.getargspec() and formatargspec().
> Look at the source if you want details of where the inf
Luis N wrote:
> Is there a way to introspect a function or class' required arguments,
> particularly keyword arguments?
See inspect.getargspec() and formatargspec().
Look at the source if you want details of where the info is stored.
> I can easily use a dictionary since it is my own function tha