-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve autodocs for top-level package names. #882
Improve autodocs for top-level package names. #882
Conversation
- Drop the '__init__' from them. - Include the ones imported from '_implicit_environ'. Fixes #845.
I've checked out this branch and built the docs. All looks good, can you fix the docstring for |
Also a concern, this is very manual. How will we make sure new methods in |
Addresses: #882 (comment).
fbba1c4 fixes the bullet rendering (not WRT manual config: We can't have best of all worlds for members imported into the base package:
The real fix would be to move those implementations into the base package, and have them just tweak the defaults object in |
I don't think the circular import gymnastics is worth it for this somewhat minor nit. Proceed: LGTM. |
Improve autodocs for top-level package names.
__init__
from them._implicit_environ'
Fixes #845.