11 lines
198 B
Python
11 lines
198 B
Python
import sys
|
|
|
|
|
|
def export(fn):
|
|
mod = sys.modules[fn.__module__]
|
|
if hasattr(mod, '__all__'):
|
|
mod.__all__.append(fn.__name__)
|
|
else:
|
|
mod.__all__ = [fn.__name__]
|
|
return fn
|