Open
Description
Currently, when autodoc renders a class of the form class Foo(Generic[T])
, the resulting HTML just shows "class modulename.Foo", which omits information, as the type parameter is not shown. The only way to show the type parameter at the moment is to use :show-inheritance:
to add a line of the form "Bases: Generic[T]". A generic class should instead be rendered as "class modulename.Foo[T]".