Re: Python-list Digest, Vol 75, Issue 6

2009-12-01 Thread Lie Ryan
On 12/1/2009 11:27 PM, Nadav Chernin wrote: Nadav Chernin wrote: > When I use getargspec(func) for user-defined function, all is working > OK, but using it for built-in functions raise TypeError: That's just fine and to be expected. It's not possible to inspect

RE: Python-list Digest, Vol 75, Issue 6

2009-12-01 Thread Nadav Chernin
Nadav Chernin wrote: > When I use getargspec(func) for user-defined function, all is working > OK, but using it for built-in functions raise TypeError: That's just fine and to be expected. It's not possible to inspect a C function. Only functions implemented in Pyt