I have been using Python more and more, and I keep seeing the variable __all__ set in different __init__.py files. Can someone explain what this d
__all__
__init__.py
It's a list of public objects of that module, as interpreted by import *. It overrides the default of hiding everything that begins with an underscore.
import *