-
Type:
Task
-
Status: Open
-
Priority:
Minor
-
Resolution: Unresolved
-
Affects Version/s: 0.32
-
Fix Version/s: None
-
Component/s: Python Client
-
Labels:None
It's generally regarded as unwise to import things unexpectedly into a Python namespace. That is usually done with statements like:
from foo.bar import *
Those should be replaced with explicit imports.