update 43

This commit is contained in:
Connor Olding 2018-03-13 04:04:24 -07:00
parent 23f87a1385
commit 9421b64fd0

View file

@ -19,6 +19,5 @@ from .plotwav import *
# this is similar to default behaviour of having no __all__ variable at all, # this is similar to default behaviour of having no __all__ variable at all,
# but ours ignores modules as well. this allows for `import sys` and such # but ours ignores modules as well. this allows for `import sys` and such
# without clobbering `from our_module import *`. # without clobbering `from our_module import *`.
__all__ = [ __all__ = [k for k, v in locals().items()
o for o in locals() if not __import__('inspect').ismodule(v) and not k.startswith('_')]
if type(o) != 'module' and not o.startswith('_')]