Closed
Description
Current output from this example in the docs:
>>> import allocarr
>>> print(allocarr.mod.__doc__)
'f'-
foo()
Wrapper for ``foo``.
>>>
Expected output:
>>> import allocarr
>>> print(allocarr.mod.__doc__)
b - 'f'-array(-1,-1), not allocated
foo - Function signature:
foo()
>>>
f2py output is also incomplete in other situations (see for example #15308 )
>>> import sys, numpy; print(numpy.__version__, sys.version)
1.19.0.dev0+edb5f56 3.6.7 | packaged by conda-forge | (default, Jul 2 2019, 02:18:42)
[GCC 7.3.0]