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 does?
|
1
|
|
||
|
|
|
|
it's a list of public objects of that module -- it overrides the default of hiding everything that begins with an underscore |
||
|
|
|
|
Linked to, but not explicitly mentioned here, is exactly when For example, the following code in a
These symbols can then be imported like so:
If the |
||
|
|
|
|
From (An Unofficial) Python Reference Wiki:
|
||
|
|
|
|
Python documentation links:
|
||
|
|
|
|
Indeed. To that I would add that in day-to-day usage, it is mostly important when importing "*" from a module. |
||
|
|
