Skip to content

Instantly share code, notes, and snippets.

@Lucretiel
Created May 28, 2013 19:52
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Lucretiel/5665586 to your computer and use it in GitHub Desktop.
Save Lucretiel/5665586 to your computer and use it in GitHub Desktop.
Expose manages your __all__ for you.
from contextlib import contextmanager
@contextmanager
def module(module_contents):
def expose(obj):
module_contents.append(obj.__name__)
return obj
yield expose
#Example:
#
#test_module.py:
#
#from expose import module
#__all__ = [] #nessesary to instantiate __all__
#with module(__all__) as expose:
# @expose
# def func1():
# return "Hello"
#
# @expose
# def func2():
# return "World"
#
# #no expose
# def func3():
# return "Goodbye"
#
#
#main1.py:
#
#from test_module import *
#
#print func1() #prints "Hello"
#print func2() #prints "Goodbye"
#print func3() #NameError
#
#
#main2.py
#
##normal imports still work, thanks to Python's thrice-cursed scope leaking.
#impot test_module
#
#print test_module.func1() #prints "Hello"
#print test_module.func2() #prints "World"
#print test_module.func3() #prints "Goodbye"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment