adding from new mac

This commit is contained in:
2019-11-19 23:50:00 +00:00
parent a3ad3fd1d0
commit 16e455bc83
67 changed files with 2677 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
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