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
The Sphinx config python_use_unqualified_type_names = True seems to do what you request for me. It looks like sphinx-autodoc2 only generates py::function directives and Sphinx itself decides how to render them.
Hello,
First, thanks for your work!
Do you know if it's possible to remove the full name from a class or function reference?
As shown below, it's even more bizarre that the name is shortened in the
PARAMETERS
sections, but not in the function signature.I'd like to have
Point
everywhere, instead ofdiffert2d.geometry.Point
. The same applies for others.I have set the
add_module_names
variable toFalse
inconf.py
, but it doesn't work (I guess it's because we are not usingautodoc
here).The text was updated successfully, but these errors were encountered: