Skip to content
Snippets Groups Projects
Commit af35135c authored by Robin Jarry's avatar Robin Jarry
Browse files

Prevent namespace pollution


Some symbols are "internal" to modules (__all__, __file__, __doc__,
__package__, etc.) they should *not* be replaced by the one from other
modules.

The "from xxx import *" python syntax construct takes this into account
and only imports the "public" symbols (i.e., those whose name does not
start with an underscore). When a __all__ symbol is defined in a module
(it should be a list of strings), the "from xxx import *" construct only
imports the names listed in xxx.__all__.

Avoid shadowing module specific symbols when dynamically loading layers
and other modules by only importing "public" symbols.

Fix importing the "tls" layer along the way (remove erroneous __all__
definition).

Signed-off-by: default avatarRobin Jarry <robin.jarry@6wind.com>
parent 60579063
No related branches found
No related tags found
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment