Closed tobinus closed 8 years ago
First step taken in 5f0b5f5 . Turns out you don't need to use __all__
to make the classes available at package level.
There's no reason to make the modules non-public, since everyone should just import the top-level package directly. They're not really private either.
Modules should start with underscore, and
__init__.py
should include__all__
with the appropriate classes.