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 have an exception defined as a nested inner class. It ends up being missing from the resulting documentation. Other exceptions and other nested inner classes do appear, though.
classOuterEx(Exception):
"""This exception is in the module. This is rendered. """passclassContainingCls:
"""This is the containing class. This is rendered. """classInnerCls:
"""This is an inner regular class. This is rendered."""passclassInnerEx(Exception):
"""This is an inner exception. This is missing! """pass
It looks like when enumerating through the nested children of a class,
the code also needs to list out exceptions. Adds test.
Should fix what I found in
sphinx-extensions2#51
I have an exception defined as a nested inner class. It ends up being missing from the resulting documentation. Other exceptions and other nested inner classes do appear, though.
Resulting RST:
The text was updated successfully, but these errors were encountered: