>>> import inspect
>>> import numpy as np
>>> inspect.getargspec(np.abs)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Python27\lib\inspect.py", line 815, in getargspec
raise TypeError('{!r} is not a Python function'.format(func))
TypeError: <ufunc 'absolute'> is not a Python function
関数として認識しないため、関数のinspect
引数を返しませんが、関数の引数を返すヘルパー関数がないようです。numpy
numpy
任意のnumpy関数の引数を取得する方法を知っている人はいますか?