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
not sure if I misunderstood something or this is related to (or the same as in) #417.
If I have the following config:
autoapi_options= [
"members",
"inherited-members", # disabled by default"undoc-members",
# "special-members", # disabled by default# "private-members","show-inheritance",
"show-inheritance-diagram", # disabled by default"show-module-summary",
"special-members",
"imported-members",
]
in my conf.py file in my understanding there should not be any special-member displayed in the derived classes.
It seems to work for most cases (derived from my own superclass or from abc.ABC), but in the documentation of enums (derived from enum.Enum) special members like __repr__(), __str__(), ... are displayed.
The text was updated successfully, but these errors were encountered:
Hello,
not sure if I misunderstood something or this is related to (or the same as in) #417.
If I have the following config:
in my
conf.py
file in my understanding there should not be any special-member displayed in the derived classes.It seems to work for most cases (derived from my own superclass or from
abc.ABC
), but in the documentation of enums (derived fromenum.Enum
) special members like__repr__()
,__str__()
, ... are displayed.The text was updated successfully, but these errors were encountered: