Re: [Tutor] Introspect function or class' required arguments

2007-12-13 Thread Luis N
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

Re: [Tutor] Introspect function or class' required arguments

2007-12-13 Thread Kent Johnson
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