I am reading code for a package file (edit: a custom package in a shared repository) with a structure similar to this:
# some_package/__init__.py
from foo import a1
from bar import b1, b2
[
a1,
b1,
b2
]
That is the extent of the file.
Is this array an implicit declaration of the __all__ method?