-
Notifications
You must be signed in to change notification settings - Fork 14
Closed
Description
Assigning a type to a class attribute is documented as an alias, but its nested class members are being expanded.
class NestedClass:
"""Parent class"""
class Foo:
"""Nested class"""
def foo(self):
"""Nested method"""
pass
def bar(self):
"""Nested method"""
pass
class Attribute:
"""Attribute"""
#: Alias
foo = NestedClass.Foo
#: Attribute
bar = 'bar'Without autosummary on auto doc does not recurse on aliases:
Metadata
Metadata
Assignees
Labels
No labels

