We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Since this library is still in development and breaking changes are not too disruptive, I think it's worth making the public API stricter right now.
Through some mix of the following:
__all__
*
_
Clarifies the boundary between the private and public API for users of the library.
Expands the set of implementation details that could be changed in the future without worrying about breaking users.
Reduces the risk of naming conflicts wherever * imports are used.
See these related issues for reference:
Make changes in this project to implement these things.
N/A
The text was updated successfully, but these errors were encountered:
I missed this somehow, but this definitely a great idea.
Sorry, something went wrong.
RAMitchell
No branches or pull requests
Description
Since this library is still in development and breaking changes are not too disruptive, I think it's worth making the public API stricter right now.
Through some mix of the following:
__all__
entries in modules to limit what is exported (affects*
imports and things like sphinx autodoc)_
Benefits of this work
Clarifies the boundary between the private and public API for users of the library.
Expands the set of implementation details that could be changed in the future without worrying about breaking users.
Reduces the risk of naming conflicts wherever
*
imports are used.Acceptance Criteria
__all__
list containing only its public attributes_
Approach
See these related issues for reference:
Make changes in this project to implement these things.
Notes
N/A
The text was updated successfully, but these errors were encountered: