"""Repro case demonstrating that nested classes are skipped by `pydoc`. """ class Outer: """This class will appear in the generated documentation.""" def method(self): """This method will also appear in the documentation.""" class Inner: """Listed with "Data and other attributes.""" def inner_method(self): """This valuable information is completely missing."""