__all__
NOTE: __all__
affects the from import *
behavior only. Members that are not mentioned in __all__
are still accessible from outside the module and can be imported with from import
.
__all__
NOTE: __all__
affects the from import *
behavior only. Members that are not mentioned in __all__
are still accessible from outside the module and can be imported with from import
.