Recipe 577237
Use this code in your module to prevent people using the "from foo import *" syntax with your module.
@apply class __all__(object): def __getitem__(self, _): raise ImportError("Star imports not supported")
Random thoughts around programming and CG
Recipe 577237
Use this code in your module to prevent people using the "from foo import *" syntax with your module.
@apply class __all__(object): def __getitem__(self, _): raise ImportError("Star imports not supported")
No comments:
Post a Comment