Is it a good idea to use a closure instead of __all__ to limit the names exposed by a Python module? This would prevent programmers from accidentally using the wrong name for a module (import urllib; urllib.os.getlogin()) as well as avoiding "from x import *" namespace pollution as __all__.
def _init_module():
global foo
import bar
def foo():
return bar.baz.operation()
class Quux(bar.baz.Splort): pass
_init_module(); del _init_module
vs. the same module using __all__:
__all__ = ['foo']
import bar
def foo():
return bar.baz.operation()
class Quux(bar.baz.Splort): pass
Functions could just adopt this style to avoid polluting the module namespace:
def foo():
import bar
bar.baz.operation()
This might be helpful for a large package that wants to help users distinguish its API from the package's use of its and other modules' API during interactive introspection. On the other hand, maybe IPython should simply distinguish names in __all__ during tab completion, and more users should use an IDE that allows them to jump between files to see the definition of each name.

from bar import fooin the code using this module ? I feel like I'm missing something... – jdb Oct 27 at 18:27__all__to define the same module. – joeforker Oct 27 at 18:33import foo as barthen they get the namebar, and if they useimport foothey get the namefoo. What is different about the closure? – steveha Oct 27 at 19:28from zope.app.intid.interfaces import IIntIdsfrom your module then you'll break their modules. When introspecting the API from an IPython shell it's not easy to know whether any particular module-level name is supposed to be interface or implementation. – joeforker Oct 27 at 19:51