When I use [the `type` statement introduced in Python 3.12](https://docs.python.org/3/reference/simple_stmts.html#type), the docstring does not show. However, when I drop this the docstring shows up. Seems like a bug: ```python foo = list[str] """This docstring shows up.""" type bar = list[str] """This docstring does not show up.""" ```