|
From: Travis O. <oli...@ee...> - 2005-10-08 19:47:35
|
Colin J. Williams wrote:
> With a view to exploring Numeric3, below is a script to check the
> availability of doc strings.
>
> Some are not yet available.
>
I don't think your script will pick up the docs for the ndarray methods.
You need to replace
eval('M.'+i+'.__doc__')
with
eval('M.ndarray.'+i+'.__doc__')
-Travis
|