Stuff exported with __all__
variable should be always public
#462
Labels
astbuilder
A substantive change is required in the astbuilder flow in order to fix this issue
Milestone
Names re-exported by the
__all__
variables are public names in Python, even starting with an underscore. To make the submodule _igraph public, just re-rexport it in igraph package in the__all__
variable.We do not currently support that.
An issue with that approach (that should be supported anyway) is that all public names must be added to the
__all__
variable unless python will not import your names when doing a wildcard import.The text was updated successfully, but these errors were encountered: