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?
|
|
|
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:
|
||||
|
|
|
It also changes what pydoc will show: module1.py
module2.py
$ pydoc module1
Help on module module1:
NAME
module1
FILE
module1.py
DATA
a = 'A'
b = 'B'
c = 'C'
$ pydoc module2
Help on module module2:
NAME
module2
FILE
module2.py
DATA
__all__ = ['a', 'b']
a = 'A'
b = 'B'
I declare |
|||
|
|
|
Python documentation links:
|
||||
|
|
|
I'm just adding this to be precise: All other answers refer to modules. The original question explicitely mentioned Generally, The behaviour for modules is explained in the other answers. The exact behaviour for packages is described here in detail. In short, The big difference is, that when you omit the declaration of On the other hand, if you omit |
|||
|
|