You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I encounter the following exception Extension error: Handler <function fortran_parse at 0x7f35d1032170> for event 'builder-inited' threw an exception (exception: 'fromsky')
when I try to parse a module with: .. f:automodule:: psfun_d_serial_mod
if the module contains an abstract interface:
abstract interface
functionfunc (x,k)
use psb_base_mod
implicit nonereal(psb_dpk_) :: func
real(psb_dpk_), intent (in) :: x
integer(psb_ipk_), intent(in), optional :: k
endfunction func
end interface
If the previous code is commented, then the generation of the documentation works as intended.
I am using Sphinx version 3.2.1 and Sphinx_Fortran 1.1.1
Thank you in advance!
The text was updated successfully, but these errors were encountered:
Hi @jhaiduce , it seems numpy supports this now, is it possible to extend sphinx-fortran? I think related is use of a general public interface to private functions to allow different forms of input, e.g.
interface CPL_send
module procedure CPL_send_full, CPL_send_min
end interface CPL_send
where inputs are CPL_send_full(a, b, c) or CPL_send_min(a, b) which using Sphinx, breathe, doyxgen combo for C++ on the same interface is documented as
CPL_send(a, b, c)
CPL_send(a, b)
I currently get an error:
sphinxfortran.fortran_autodoc.F90toRstException: Unknown function, subroutine or program: cpl_send
Hi,
I encounter the following exception
Extension error: Handler <function fortran_parse at 0x7f35d1032170> for event 'builder-inited' threw an exception (exception: 'fromsky')
when I try to parse a module with:
.. f:automodule:: psfun_d_serial_mod
if the module contains an abstract interface:
If the previous code is commented, then the generation of the documentation works as intended.
I am using Sphinx version 3.2.1 and Sphinx_Fortran 1.1.1
Thank you in advance!
The text was updated successfully, but these errors were encountered: