Closed abesto closed 2 years ago
https://github.com/zsol/py.wtf/pull/33 added explicit exports to the index; let's show them! Probably as a dedicated section near the top of the module contents page.
from foo import bar as baz __all__ = ["baz"]
We'll want to generate a link that's called baz, but points to the symbol foo.bar. Can't do that with plain strings.
baz
foo.bar
Fixed by #79
https://github.com/zsol/py.wtf/pull/33 added explicit exports to the index; let's show them! Probably as a dedicated section near the top of the module contents page.